mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
Tweak some NanoUI stuff
Sanitize config_data Log open UIs
This commit is contained in:
@@ -184,15 +184,19 @@
|
||||
**/
|
||||
/datum/nanoui/proc/get_config_data()
|
||||
var/list/config_data = list(
|
||||
"title" = title,
|
||||
"srcObject" = list("name" = src_object.name),
|
||||
"title" = sanitize(title),
|
||||
"srcObject" = list(
|
||||
"name" = sanitize(src_object.name)
|
||||
),
|
||||
"stateKey" = state_key,
|
||||
"status" = status,
|
||||
"autoUpdateLayout" = auto_update_layout,
|
||||
"autoUpdateContent" = auto_update_content,
|
||||
"showMap" = show_map,
|
||||
"mapZLevel" = map_z_level,
|
||||
"user" = list("name" = user.name)
|
||||
"user" = list(
|
||||
"name" = user.name
|
||||
)
|
||||
)
|
||||
return config_data
|
||||
|
||||
|
||||
Reference in New Issue
Block a user