This commit is contained in:
Seris02
2019-12-30 19:08:37 +08:00
committed by GitHub
parent 40730b48d5
commit bc2e4f3b5a
@@ -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()
..()
..()