From bc2e4f3b5ac309d5f37fe9e73de901df44372147 Mon Sep 17 00:00:00 2001 From: Seris02 <49109742+Seris02@users.noreply.github.com> Date: Mon, 30 Dec 2019 19:08:37 +0800 Subject: [PATCH] desc --- code/modules/food_and_drinks/food/snacks_other.dm | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm index 3da0fc1eac..f3c102b4fa 100644 --- a/code/modules/food_and_drinks/food/snacks_other.dm +++ b/code/modules/food_and_drinks/food/snacks_other.dm @@ -644,10 +644,15 @@ /obj/item/reagent_containers/food/snacks/marshmallow/proc/burnmallow(reallyburned = FALSE) if (reallyburned && burned == 1) icon_state = "marshmallowrburned" - desc = "[initial(desc)] It looks very burned." else if (burned == 0) icon_state = "marshmallowburned" - desc = "[initial(desc)] It looks just right for eating!" + +/obj/item/reagent_containers/food/snacks/marshmallow/proc/examine(mob/user) + . = ..() + if (burned == 2) + . += "It looks very burned." + if (burned == 1) + . += "It looks just right for eating!" /obj/item/reagent_containers/food/snacks/marshmallow/fire_act(temp,volume) switch (temp) @@ -668,4 +673,4 @@ burnmallow(TRUE) if (7000 to INFINITY) burn() - ..() \ No newline at end of file + ..()