Fixes VV spells

This commit is contained in:
clusterfack
2015-09-07 14:05:04 -05:00
parent 92e4610e56
commit 3b49fe4f5a

View File

@@ -644,7 +644,7 @@ var/list/admin_verbs_mod = list(
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 spells
if(!S) return if(!S) return
T.add_spell(S) T.add_spell(new S)
feedback_add_details("admin_verb","GS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! feedback_add_details("admin_verb","GS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
log_admin("[key_name(usr)] gave [key_name(T)] the spell [S].") log_admin("[key_name(usr)] gave [key_name(T)] the spell [S].")
message_admins("<span class='notice'>[key_name_admin(usr)] gave [key_name(T)] the spell [S].</span>", 1) message_admins("<span class='notice'>[key_name_admin(usr)] gave [key_name(T)] the spell [S].</span>", 1)