mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
Calling makeNormalProcess on a speedy machine no longer breaks it
This commit is contained in:
@@ -141,16 +141,15 @@ Class Procs:
|
||||
/obj/machinery/makeSpeedProcess()
|
||||
if(speed_process)
|
||||
return
|
||||
speed_process = 1
|
||||
speed_process = TRUE
|
||||
STOP_PROCESSING(SSmachines, src)
|
||||
GLOB.fast_processing += src
|
||||
isprocessing = TRUE
|
||||
|
||||
// gotta go slow
|
||||
/obj/machinery/makeNormalProcess()
|
||||
if(!speed_process)
|
||||
return
|
||||
speed_process = 0
|
||||
speed_process = FALSE
|
||||
START_PROCESSING(SSmachines, src)
|
||||
GLOB.fast_processing -= src
|
||||
|
||||
|
||||
Reference in New Issue
Block a user