mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 08:31:57 +00:00
Fixes maniquin caused runtimes (#6784)
This commit is contained in:
@@ -281,6 +281,8 @@ main ui datum.
|
||||
* @return nothing
|
||||
*/
|
||||
/datum/vueui/proc/check_for_change(var/force = 0)
|
||||
if(!user.client)
|
||||
return
|
||||
if(status > STATUS_DISABLED)
|
||||
var/ret = object.vueui_data_change(data, user, src)
|
||||
if(ret)
|
||||
@@ -323,7 +325,7 @@ main ui datum.
|
||||
* @return nothing
|
||||
*/
|
||||
/datum/vueui/process()
|
||||
if (!object || !user || status < 0)
|
||||
if (!object || !user || status < 0 || !user.client)
|
||||
close()
|
||||
return
|
||||
update_status()
|
||||
|
||||
Reference in New Issue
Block a user