this actually does not need named this way

This commit is contained in:
Putnam
2021-06-07 05:31:41 -07:00
parent d03bf641dd
commit 7952a1cf88
4 changed files with 10 additions and 9 deletions
+6 -6
View File
@@ -209,7 +209,7 @@ SUBSYSTEM_DEF(air)
// Heat -- slow and of questionable usefulness. Off by default for this reason. Pretty cool, though.
if(currentpart == SSAIR_TURF_CONDUCTION)
timer = TICK_USAGE_REAL
if(process_turf_heat(MC_TICK_REMAINING_MS))
if(process_turf_heat(TICK_REMAINING_MS))
pause()
cost_superconductivity = MC_AVERAGE(cost_superconductivity, TICK_DELTA_TO_MS(TICK_USAGE_REAL - timer))
if(state != SS_RUNNING)
@@ -358,7 +358,7 @@ SUBSYSTEM_DEF(air)
return
/datum/controller/subsystem/air/proc/process_turf_equalize(resumed = 0)
if(process_turf_equalize_auxtools(resumed,MC_TICK_REMAINING_MS))
if(process_turf_equalize_auxtools(resumed,TICK_REMAINING_MS))
pause()
/*
//cache for sanic speed
@@ -378,7 +378,7 @@ SUBSYSTEM_DEF(air)
*/
/datum/controller/subsystem/air/proc/process_turfs(resumed = 0)
if(process_turfs_auxtools(resumed,MC_TICK_REMAINING_MS))
if(process_turfs_auxtools(resumed,TICK_REMAINING_MS))
pause()
/*
//cache for sanic speed
@@ -397,15 +397,15 @@ SUBSYSTEM_DEF(air)
*/
/datum/controller/subsystem/air/proc/process_excited_groups(resumed = 0)
if(process_excited_groups_auxtools(resumed,MC_TICK_REMAINING_MS))
if(process_excited_groups_auxtools(resumed,TICK_REMAINING_MS))
pause()
/datum/controller/subsystem/air/proc/finish_turf_processing(resumed = 0)
if(finish_turf_processing_auxtools(MC_TICK_REMAINING_MS))
if(finish_turf_processing_auxtools(TICK_REMAINING_MS))
pause()
/datum/controller/subsystem/air/proc/post_process_turfs(resumed = 0)
if(post_process_turfs_auxtools(resumed,MC_TICK_REMAINING_MS))
if(post_process_turfs_auxtools(resumed,TICK_REMAINING_MS))
pause()
/datum/controller/subsystem/air/proc/finish_turf_processing_auxtools()
+1 -1
View File
@@ -10,5 +10,5 @@ SUBSYSTEM_DEF(callbacks)
CRASH("Auxtools not found! Callback subsystem shutting itself off.")
/datum/controller/subsystem/callbacks/fire()
if(process_atmos_callbacks(MC_TICK_REMAINING_MS))
if(process_atmos_callbacks(TICK_REMAINING_MS))
pause()