some tiny optimizations/shifting things around, removes 2 unused files (#5643)

title

---------

Co-authored-by: silicons <no@you.cat>
This commit is contained in:
silicons
2023-06-25 11:55:07 +01:00
committed by GitHub
co-authored by silicons
parent 104bcfde5d
commit d5833cb162
29 changed files with 66 additions and 888 deletions
+1 -2
View File
@@ -88,7 +88,6 @@ var/list/admin_verbs_admin = list(
/client/proc/man_up,
/client/proc/global_man_up,
/client/proc/response_team, // Response Teams admin verb
/client/proc/trader_ship, // Trader ship admin verb
/client/proc/toggle_antagHUD_use,
/client/proc/toggle_antagHUD_restrictions,
/client/proc/allow_character_respawn, // Allows a ghost to respawn ,
@@ -1093,7 +1092,7 @@ var/list/admin_verbs_event_manager = list(
set category = "Fun"
set name = "Give Spell"
set desc = "Gives a spell to a mob."
var/spell/S = input("Choose the spell to give to that guy", "ABRAKADABRA") as null|anything in spells
var/spell/S = input("Choose the spell to give to that guy", "ABRAKADABRA") as null|anything in typesof(/spell)
if(!S) return
T.spell_list += new S
feedback_add_details("admin_verb","GS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!