mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Admin panel client fix, goon DNA fix
This commit is contained in:
@@ -36,11 +36,12 @@
|
||||
..()
|
||||
block=RADBLOCK
|
||||
|
||||
OnMobLife(var/mob/owner)
|
||||
owner.radiation = max(owner.radiation, 20)
|
||||
OnMobLife(var/mob/living/owner)
|
||||
owner.apply_effect(max(owner.radiation, 20), IRRADIATE)
|
||||
for(var/mob/living/L in range(1, owner))
|
||||
if(L == owner) continue
|
||||
L << "\red You are enveloped by a soft green glow emanating from [owner]."
|
||||
if(L == owner)
|
||||
continue
|
||||
L << "<span class='danger'>You are enveloped by a soft green glow emanating from [owner].</span>"
|
||||
L.apply_effect(5, IRRADIATE)
|
||||
return
|
||||
|
||||
|
||||
@@ -56,9 +56,9 @@ var/global/nologevent = 0
|
||||
body += "[admin_jump_link(M, src)]\] </b><br>"
|
||||
|
||||
body += "<b>Mob type:</b> [M.type]<br>"
|
||||
if(M.client.related_accounts_cid.len)
|
||||
if(M.client && M.client.related_accounts_cid.len)
|
||||
body += "<b>Related accounts by CID:</b> [list2text(M.client.related_accounts_cid, " - ")]<br>"
|
||||
if(M.client.related_accounts_ip.len)
|
||||
if(M.client && M.client.related_accounts_ip.len)
|
||||
body += "<b>Related accounts by IP:</b> [list2text(M.client.related_accounts_ip, " - ")]<br><br>"
|
||||
|
||||
body += "<A href='?_src_=holder;boot2=\ref[M]'>Kick</A> | "
|
||||
|
||||
Reference in New Issue
Block a user