This commit is contained in:
Vi3trice
2023-03-04 10:29:33 -05:00
committed by GitHub
parent 46677d667c
commit a5d949a0e7
+3 -3
View File
@@ -2,7 +2,7 @@
/obj/item/mixing_bowl
name = "mixing bowl"
desc = "Mixing it up in the kitchen."
flags = OPENCONTAINER
container_type = OPENCONTAINER
icon = 'icons/obj/kitchen.dmi'
icon_state = "mixing_bowl"
var/max_n_of_items = 25
@@ -137,12 +137,12 @@
return
if(prob(chance))
dirty = TRUE
flags = null
container_type = null
icon_state = dirty_icon
/obj/item/mixing_bowl/proc/clean()
dirty = FALSE
flags = OPENCONTAINER
container_type = OPENCONTAINER
icon_state = clean_icon
/obj/item/mixing_bowl/wash(mob/user, atom/source)