From 3509b1ad4a7eaf119f627a78b98db7468833bbb8 Mon Sep 17 00:00:00 2001 From: Shadow-Quill <44811257+Shadow-Quill@users.noreply.github.com> Date: Thu, 6 Dec 2018 15:20:18 -0600 Subject: [PATCH] Wait for power to area, then update icon Read the tin. --- code/modules/reagents/chemistry/machinery/chem_master.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index 58f7fc52772..a4859e8236b 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -20,8 +20,9 @@ /obj/machinery/chem_master/New() create_reagents(100) - spawn(0) - update_icon() + spawn(50) + update_icon() //wait 5 seconds then update the icon, to allow powered icon to appear if actually powered + /obj/machinery/chem_master/ex_act(severity) switch(severity)