Merge pull request #6540 from Citadel-Station-13/upstream-merge-37461

[MIRROR] Removes the signals on process procs
This commit is contained in:
LetterJay
2018-04-29 02:24:04 -05:00
committed by GitHub
3 changed files with 0 additions and 6 deletions
-1
View File
@@ -165,7 +165,6 @@ SUBSYSTEM_DEF(air)
currentrun.len--
if(!M || (M.process_atmos(seconds) == PROCESS_KILL))
atmos_machinery.Remove(M)
M.SendSignal(COMSIG_MACHINE_PROCESS_ATMOS)
if(MC_TICK_CHECK)
return
-1
View File
@@ -40,7 +40,6 @@ SUBSYSTEM_DEF(machines)
var/obj/machinery/thing = currentrun[currentrun.len]
currentrun.len--
if(!QDELETED(thing) && thing.process(seconds) != PROCESS_KILL)
thing.SendSignal(COMSIG_MACHINE_PROCESS)
if(thing.use_power)
thing.auto_use_power() //add back the power state
else