Removed and commented out the last traces of goon auth. code

This commit is contained in:
Albert Iordache
2011-12-30 23:28:14 +02:00
parent 7d6aead5a5
commit 39b6dd57e0
34 changed files with 90 additions and 141 deletions

View File

@@ -508,10 +508,10 @@ Doing this because FindTurfs() isn't even used
/mob/verb/revent(number as num)
set category = "Debug"
set name = "Change event %"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
if(src.authenticated && src.holder)
if(src.holder)
eventchance = number
log_admin("[src.key] set the random event chance to [eventchance]%")
message_admins("[src.key] set the random event chance to [eventchance]%")
@@ -520,7 +520,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/funbutton()
set category = "Admin"
set name = "Random Expl.(REMOVE ME)"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
for(var/turf/T in world)
@@ -544,7 +544,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/removeplasma()
set category = "Debug"
set name = "Stabilize Atmos."
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
spawn(0)
@@ -571,7 +571,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/fire(turf/T as turf in world)
set category = "Special Verbs"
set name = "Create Fire"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
world << "[usr.key] created fire"
@@ -582,7 +582,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/co2(turf/T as turf in world)
set category = "Special Verbs"
set name = "Create CO2"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
world << "[usr.key] created CO2"
@@ -592,7 +592,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/n2o(turf/T as turf in world)
set category = "Special Verbs"
set name = "Create N2O"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
world << "[usr.key] created N2O"
@@ -602,7 +602,7 @@ Doing this because FindTurfs() isn't even used
/mob/verb/explosion(T as obj|mob|turf in world)
set category = "Special Verbs"
set name = "Create Explosion"
if(!src.authenticated || !src.holder)
if(!src.holder)
src << "Only administrators may use this command."
return
world << "[usr.key] created an explosion"