mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 18:44:48 +01:00
Makes event not sleep (for real this time) (#25558)
* makes this shit not sleep * make OD happy
This commit is contained in:
@@ -91,6 +91,7 @@
|
||||
* Ensure no sleep is called. Use INVOKE_ASYNC to call procs which do.
|
||||
*/
|
||||
/datum/event/proc/start()
|
||||
SHOULD_NOT_SLEEP(TRUE)
|
||||
return
|
||||
|
||||
/**
|
||||
@@ -101,6 +102,7 @@
|
||||
* Ensure no sleep is called. Use INVOKE_ASYNC to call procs which do.
|
||||
*/
|
||||
/datum/event/proc/announce(false_alarm = FALSE)
|
||||
SHOULD_NOT_SLEEP(TRUE)
|
||||
return
|
||||
|
||||
/**
|
||||
@@ -112,6 +114,7 @@
|
||||
* Ensure no sleep is called. Use INVOKE_ASYNC to call procs which do.
|
||||
*/
|
||||
/datum/event/proc/tick()
|
||||
SHOULD_NOT_SLEEP(TRUE)
|
||||
return
|
||||
|
||||
/**
|
||||
@@ -125,6 +128,7 @@
|
||||
* Ensure no sleep is called. Use INVOKE_ASYNC to call procs which do.
|
||||
*/
|
||||
/datum/event/proc/end()
|
||||
SHOULD_NOT_SLEEP(TRUE)
|
||||
return
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user