Deletes some unused vars (#24381)

This commit is contained in:
GDN
2024-03-03 11:50:52 -06:00
committed by GitHub
parent 3d09c6d293
commit d6e34816e1
+6 -11
View File
@@ -2,19 +2,15 @@ GLOBAL_LIST_EMPTY(admin_datums)
GLOBAL_PROTECT(admin_datums) // This is protected because we dont want people making their own admin ranks, for obvious reasons
/datum/admins
var/rank = "Temporary Admin"
var/client/owner = null
var/rank = "Temporary Admin"
var/client/owner
/// Bitflag containing the current rights this admin holder is assigned to
var/rights = 0
var/fakekey = null
var/big_brother = 0
var/fakekey
var/big_brother = FALSE
/// Our currently linked marked datum
var/datum/marked_datum
var/admincaster_screen = 0 //See newscaster.dm under machinery for a full description
var/datum/feed_message/admincaster_feed_message = new /datum/feed_message //These two will act as holders.
var/datum/feed_channel/admincaster_feed_channel = new /datum/feed_channel
var/admincaster_signature //What you'll sign the newsfeeds as
/datum/admins/New(initial_rank = "Temporary Admin", initial_rights = 0, ckey)
if(IsAdminAdvancedProcCall())
to_chat(usr, "<span class='boldannounceooc'>Admin rank creation blocked: Advanced ProcCall detected.</span>")
@@ -25,7 +21,6 @@ GLOBAL_PROTECT(admin_datums) // This is protected because we dont want people ma
error("Admin datum created without a ckey argument. Datum has been deleted")
qdel(src)
return
admincaster_signature = "Nanotrasen Officer #[rand(0,9)][rand(0,9)][rand(0,9)]"
rank = initial_rank
rights = initial_rights
GLOB.admin_datums[ckey] = src