From ad6684380c04a43a725e4cd36548cb0c95db1660 Mon Sep 17 00:00:00 2001 From: GrayRachnid Date: Wed, 27 Nov 2019 18:39:11 -0500 Subject: [PATCH 1/2] You can now stack stuff pretty high --- code/modules/food_and_drinks/food/customizables.dm | 4 +++- code/modules/food_and_drinks/food/snacks_pastry.dm | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index df5e6a87fd..a13d8dca39 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -16,7 +16,7 @@ w_class = WEIGHT_CLASS_SMALL volume = 80 - var/ingMax = 12 + var/ingMax = 32 var/list/ingredients = list() var/ingredients_placement = INGREDIENTS_FILL var/customname = "custom" @@ -32,6 +32,8 @@ if(ingredients.len>5) size = "big" if(ingredients.len>8) + size = "huge" + if(ingrenients.len>16) size = "monster" . += "It contains [ingredients.len?"[ingredients_listed]":"no ingredient, "]making a [size]-sized [initial(name)]." diff --git a/code/modules/food_and_drinks/food/snacks_pastry.dm b/code/modules/food_and_drinks/food/snacks_pastry.dm index c3fc942b83..baf8e150c5 100644 --- a/code/modules/food_and_drinks/food/snacks_pastry.dm +++ b/code/modules/food_and_drinks/food/snacks_pastry.dm @@ -386,7 +386,7 @@ tastes = list("pastry" = 1, "sweetness" = 1) foodtype = GRAIN -#define PANCAKE_MAX_STACK 10 +#define PANCAKE_MAX_STACK 30 /obj/item/reagent_containers/food/snacks/pancakes name = "pancake" From b6df1126bbd953b7f639cfe6de09259b59b7105b Mon Sep 17 00:00:00 2001 From: GrayRachnid Date: Wed, 27 Nov 2019 22:52:21 -0500 Subject: [PATCH 2/2] Can't I make a PR without having to make 2 commits to fix my mistakes oh my god --- code/modules/food_and_drinks/food/customizables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm index a13d8dca39..8724841643 100644 --- a/code/modules/food_and_drinks/food/customizables.dm +++ b/code/modules/food_and_drinks/food/customizables.dm @@ -33,7 +33,7 @@ size = "big" if(ingredients.len>8) size = "huge" - if(ingrenients.len>16) + if(ingredients.len>16) size = "monster" . += "It contains [ingredients.len?"[ingredients_listed]":"no ingredient, "]making a [size]-sized [initial(name)]."