mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-31 00:58:26 +01:00
[MIRROR] Fixes tgui windows not working [MDB IGNORE] (#10644)
* Fixes tgui windows not working (#64046) I fucked it up when I did my harddel stuff, we don't wanna fuckin close the window if any of our vars are **not** destroyed * Fixes tgui windows not working Co-authored-by: LemonInTheDark <58055496+LemonInTheDark@users.noreply.github.com>
This commit is contained in:
co-authored by
LemonInTheDark
parent
4bce952a86
commit
64eda60b54
@@ -252,7 +252,7 @@
|
||||
return
|
||||
var/datum/host = src_object.ui_host(user)
|
||||
// If the object or user died (or something else), abort.
|
||||
if(!QDELETED(src_object) || !QDELETED(host) || !QDELETED(user) || !QDELETED(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