mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 19:15:11 +01:00
fixes null.close (#17755)
This commit is contained in:
@@ -320,7 +320,7 @@
|
||||
return
|
||||
var/datum/host = src_object.tgui_host(user)
|
||||
// If the object or user died (or something else), abort.
|
||||
if(!src_object || !host || !user || !window)
|
||||
if(QDELETED(src_object) || QDELETED(host) || QDELETED(user) || QDELETED(window))
|
||||
close(can_be_suspended = FALSE)
|
||||
return
|
||||
// Validate ping
|
||||
|
||||
Reference in New Issue
Block a user