Fixes a minor icon-flicker thing with the drone fabricator.

Conflicts:
	code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm
This commit is contained in:
Zuhayr
2014-06-02 13:44:55 -04:00
committed by ZomgPonies
parent ae9658e4bd
commit 7e1ba654e3
@@ -27,8 +27,11 @@
/obj/machinery/drone_fabricator/process()
if(ticker.current_state < GAME_STATE_PLAYING)
return
if(stat & NOPOWER || !produce_drones)
icon_state = "drone_fab_nopower"
if(icon_state != "drone_fab_nopower") icon_state = "drone_fab_nopower"
return
if(drone_progress >= 100)