mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 14:08:44 +01:00
Up-port: Various runtimes (#15802)
* Various runtimes (#7873) * Some more preferences setup runtimes (#7884) * Bug in #7884 making markings not show (#7888)
This commit is contained in:
@@ -89,7 +89,7 @@
|
||||
* return bool - TRUE if a new pooled window is opened, FALSE in all other situations including if a new pooled window didn't open because one already exists.
|
||||
*/
|
||||
/datum/tgui/proc/open()
|
||||
if(!user.client)
|
||||
if(!user?.client)
|
||||
return FALSE
|
||||
if(window)
|
||||
return FALSE
|
||||
@@ -214,7 +214,7 @@
|
||||
* optional force bool Send an update even if UI is not interactive.
|
||||
*/
|
||||
/datum/tgui/proc/send_full_update(custom_data, force)
|
||||
if(!user.client || !initialized || closing)
|
||||
if(!user?.client || !initialized || closing)
|
||||
return
|
||||
//if(!COOLDOWN_FINISHED(src, refresh_cooldown))
|
||||
//refreshing = TRUE
|
||||
|
||||
Reference in New Issue
Block a user