mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
stops antag menu from runtiming when high value items are nullspaced (#28407)
This commit is contained in:
@@ -101,7 +101,7 @@ RESTRICT_TYPE(/datum/ui_module/admin/antagonist_menu)
|
||||
var/list/temp_list = list()
|
||||
temp_list["name"] = target.name
|
||||
temp_list["person"] = get(target, /mob/living)
|
||||
temp_list["loc"] = target.loc.name
|
||||
temp_list["loc"] = target.loc ? target.loc.name : "null"
|
||||
temp_list["uid"] = target.UID()
|
||||
var/turf/T = get_turf(target)
|
||||
temp_list["admin_z"] = !T || is_admin_level(T.z)
|
||||
|
||||
Reference in New Issue
Block a user