[MIRROR] Swaps sleep() to use SECONDS define [MDB IGNORE] (#16973)

* Swaps sleep() to use SECONDS define

* merge conflicts and skyrat modules

Co-authored-by: san7890 <the@san7890.com>
Co-authored-by: tastyfish <crazychris32@gmail.com>
This commit is contained in:
SkyratBot
2022-10-19 19:43:24 -04:00
committed by GitHub
co-authored by san7890 tastyfish
parent 59dc5c36b7
commit 612568daa0
99 changed files with 280 additions and 279 deletions
+1 -1
View File
@@ -77,7 +77,7 @@
/obj/item/onetankbomb/receive_signal() //This is mainly called by the sensor through sense() to the holder, and from the holder to here.
audible_message(span_warning("[icon2html(src, hearers(src))] *beep* *beep* *beep*"))
playsound(src, 'sound/machines/triple_beep.ogg', ASSEMBLY_BEEP_VOLUME, TRUE)
sleep(10)
sleep(1 SECONDS)
if(QDELETED(src))
return
if(status)
+2 -2
View File
@@ -111,13 +111,13 @@
if (M.id == src.id)
INVOKE_ASYNC(M, /obj/machinery/door/poddoor.proc/open)
sleep(10)
sleep(1 SECONDS)
for(var/obj/machinery/mass_driver/M in GLOB.machines)
if(M.id == src.id)
M.drive()
sleep(60)
sleep(6 SECONDS)
for(var/obj/machinery/door/poddoor/M in GLOB.machines)
if (M.id == src.id)