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 + ..()