Cleaning out old unused code.

This commit is contained in:
ZomgPonies
2014-07-13 08:10:44 -04:00
parent 044399e6f0
commit 76276ace29
8 changed files with 6 additions and 179 deletions
-21
View File
@@ -423,19 +423,6 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
feedback_add_details("admin_verb","ADC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/cmd_switch_radio()
set category = "Debug"
set name = "Switch Radio Mode"
set desc = "Toggle between normal radios and experimental radios. Have a coder present if you do this."
GLOBAL_RADIO_TYPE = !GLOBAL_RADIO_TYPE // toggle
log_admin("[key_name(src)] has turned the experimental radio system [GLOBAL_RADIO_TYPE ? "on" : "off"].")
message_admins("[key_name_admin(src)] has turned the experimental radio system [GLOBAL_RADIO_TYPE ? "on" : "off"].", 0)
feedback_add_details("admin_verb","SRM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
/client/proc/cmd_admin_areatest()
set category = "Mapping"
set name = "Test areas"
@@ -1101,11 +1088,3 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that
else
alert("Invalid mob")
/client/proc/gib_money()
set category = "Event"
set name = "Dispense Money"
set desc = "Honk"
var/response = input(src,"How much moneys?") as num
if( response < 1) return
dispense_cash(response, mob.loc)