mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-12 08:27:13 +01:00
Made the Destroy proc not sleepable (#18940)
Made the Destroy proc not sleepable --------- Co-authored-by: FluffyGhost <FluffyGhost>
This commit is contained in:
@@ -233,8 +233,8 @@
|
||||
else
|
||||
return FALSE
|
||||
var/mob/user = usr
|
||||
if(user && istype(user) && !forced)
|
||||
ui_interact(user) // Re-open the UI on this computer. It should show the main screen now.
|
||||
if(user && istype(user) && !forced && !QDELETED(src))
|
||||
INVOKE_ASYNC(src, TYPE_PROC_REF(/datum, ui_interact), user) // Re-open the UI on this computer. It should show the main screen now.
|
||||
update_icon()
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user