From eefbaa703cbbb39e091470059f4fb3462f9d3998 Mon Sep 17 00:00:00 2001 From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> Date: Fri, 7 Dec 2018 07:12:19 -0600 Subject: [PATCH] Instead updates_icon needs testing to make sure it works --- code/modules/reagents/chemistry/machinery/chem_master.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index a4859e8236b..54c9ef95442 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -20,9 +20,7 @@ /obj/machinery/chem_master/New() create_reagents(100) - spawn(50) - update_icon() //wait 5 seconds then update the icon, to allow powered icon to appear if actually powered - + update_icon() /obj/machinery/chem_master/ex_act(severity) switch(severity) @@ -40,6 +38,7 @@ if(powered()) overlays += "waitlight" + /obj/machinery/chem_master/blob_act() if(prob(50)) qdel(src) @@ -50,6 +49,7 @@ else spawn(rand(0, 15)) stat |= NOPOWER + update_icon() /obj/machinery/chem_master/attackby(obj/item/B, mob/user, params) if(default_unfasten_wrench(user, B))