mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-15 17:13:46 +01:00
Merge pull request #9841 from alex-gh/isbanned_runtime_fix
Fixes runtime in IsBanned.dm
This commit is contained in:
@@ -11,7 +11,7 @@ world/IsBanned(key,address,computer_id)
|
||||
var/ckey = ckey(key)
|
||||
if((ckey in admin_datums) || (ckey in GLOB.deadmins))
|
||||
var/datum/admins/A = admin_datums[ckey]
|
||||
if(A.rights & R_ADMIN)
|
||||
if(A && (A.rights & R_ADMIN))
|
||||
admin = 1
|
||||
|
||||
//Guest Checking
|
||||
|
||||
Reference in New Issue
Block a user