diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm index 6c0b0c27e3b..b55175bfa97 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.dm +++ b/code/modules/reagents/reagent_containers/food/snacks.dm @@ -5163,6 +5163,7 @@ icon_state = "kois_steak" filling_color = "#dcd9cd" reagents_to_add = list(/decl/reagent/kois = 20, /decl/reagent/toxin/phoron = 15) + bitesize = 3 /obj/item/reagent_containers/food/snacks/donut/kois name = "k'ois donut" @@ -5171,6 +5172,7 @@ filling_color = "#dcd9cd" overlay_state = "box-kois_donut" reagents_to_add = list(/decl/reagent/kois = 15, /decl/reagent/toxin/phoron = 10) + bitesize = 3 /obj/item/reagent_containers/food/snacks/koismuffin name = "k'ois muffin" @@ -5178,10 +5180,12 @@ icon_state = "kois_muffin" filling_color = "#dcd9cd" reagents_to_add = list(/decl/reagent/kois = 10, /decl/reagent/toxin/phoron = 15) + bitesize = 2 /obj/item/reagent_containers/food/snacks/koisburger name = "k'ois burger" desc = "K'ois inside k'ois. Peak Vaurcesian cuisine." icon_state = "kois_burger" filling_color = "#dcd9cd" - reagents_to_add = list(/decl/reagent/kois = 20, /decl/reagent/toxin/phoron = 20) \ No newline at end of file + reagents_to_add = list(/decl/reagent/kois = 20, /decl/reagent/toxin/phoron = 20) + bitesize = 2 diff --git a/html/changelogs/desven-fixbites.yml b/html/changelogs/desven-fixbites.yml new file mode 100644 index 00000000000..49b7678f5ee --- /dev/null +++ b/html/changelogs/desven-fixbites.yml @@ -0,0 +1,13 @@ +# Your name. +author: Desven + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes bites for the new k'ois food."