mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 03:25:49 +01:00
fix: VV list display with values that are zero (#25618)
This commit is contained in:
committed by
GitHub
parent
8412356b22
commit
a695a0f015
@@ -517,7 +517,7 @@
|
||||
var/val
|
||||
if(IS_NORMAL_LIST(L) && !isnum(key))
|
||||
val = L[key]
|
||||
if(!val)
|
||||
if(isnull(val))
|
||||
val = key
|
||||
key = i
|
||||
|
||||
@@ -952,7 +952,7 @@
|
||||
message_admins("<span class='notice'>[key_name(usr)] has added [amount] units of [chosen_id] to \the [A]</span>")
|
||||
|
||||
else if(href_list["editreagents"])
|
||||
if(!check_rights(R_DEBUG|R_ADMIN))
|
||||
if(!check_rights(R_DEBUG|R_ADMIN))
|
||||
return
|
||||
|
||||
var/atom/A = locateUID(href_list["editreagents"])
|
||||
|
||||
Reference in New Issue
Block a user