Skip to content

Commit

Permalink
Atomization
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffyGhost authored and FluffyGhost committed Apr 13, 2024
1 parent 11f8eff commit 7172397
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/datums/datum.dm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
// Return the appropriate QDEL_HINT; in most cases this is QDEL_HINT_QUEUE.
/datum/proc/Destroy(force=FALSE)
SHOULD_CALL_PARENT(TRUE)
//SHOULD_NOT_SLEEP(TRUE) //Soon my friend, soon...
SHOULD_NOT_SLEEP(TRUE)

tag = null
datum_flags &= ~DF_USE_TAG //In case something tries to REF us
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()

/**
Expand Down

0 comments on commit 7172397

Please sign in to comment.