From 14ea26fdf84666143a07396dfc71ba1c9975b6e0 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Fri, 10 Apr 2015 07:10:06 -0400 Subject: [PATCH] fixes --- code/modules/reagents/newchem/food.dm | 4 ++-- code/modules/reagents/reagent_containers/food/snacks.dm | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/newchem/food.dm b/code/modules/reagents/newchem/food.dm index e6308bb2322..0ac2019e031 100644 --- a/code/modules/reagents/newchem/food.dm +++ b/code/modules/reagents/newchem/food.dm @@ -471,11 +471,11 @@ datum/reagent/pepperoni/reaction_mob(var/mob/living/M, var/method=TOUCH, var/vol var/mob/living/carbon/human/H = M if(H.wear_mask) - H << "" + H << "The pepperoni bounces off your mask!" return if(H.head) - H << "" + H << "Your mask protects you from the errant pepperoni!" return if(prob(50)) diff --git a/code/modules/reagents/reagent_containers/food/snacks.dm b/code/modules/reagents/reagent_containers/food/snacks.dm index c1325315f31..c4a75cbe7d2 100644 --- a/code/modules/reagents/reagent_containers/food/snacks.dm +++ b/code/modules/reagents/reagent_containers/food/snacks.dm @@ -2633,7 +2633,6 @@ New() ..() reagents.add_reagent("nutriment", 6) - reagents.add_reagent("bread", 30) bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/breadslice @@ -2644,6 +2643,9 @@ filling_color = "#D27332" bitesize = 2 + New() + ..() + reagents.add_reagent("bread", 5) /obj/item/weapon/reagent_containers/food/snacks/sliceable/creamcheesebread name = "Cream Cheese Bread"