Development Fixes - 06NOV2016 (#1120)

Fixes the mousebeam for more gibbings and ensures that nowhere is safe.
Fixes the multipliers because fuck.
Makes the night lighting process not runtime if night lighting is disabled. Note to Bed: del()-ing processes is bad, they should be disabled instead.
This commit is contained in:
skull132
2016-11-06 20:14:38 +02:00
committed by GitHub
parent faf81f15a1
commit ad1042d033
7 changed files with 58 additions and 36 deletions

View File

@@ -91,7 +91,8 @@ var/global/datum/controller/processScheduler/processScheduler
/datum/controller/processScheduler/proc/callPreStart()
for (var/datum/controller/process/P in processes)
P.preStart()
if (!P.disabled)
P.preStart()
/datum/controller/processScheduler/proc/process()
while(isRunning)