Made all current wizard + genetic spells a subtype of spell/wizard (Since they use the same action button row)

This commit is contained in:
ZomgPonies
2014-07-23 11:04:07 -04:00
parent 800d5b4b0b
commit 431ab486b3
38 changed files with 247 additions and 274 deletions
+1 -1
View File
@@ -395,7 +395,7 @@ var/list/admin_verbs_mod = list(
set category = "Event"
set name = "Give Spell"
set desc = "Gives a spell to a mob."
var/obj/effect/proc_holder/spell/S = input("Choose the spell to give to that guy", "ABRAKADABRA") as null|anything in spells
var/obj/effect/proc_holder/spell/wizard/S = input("Choose the spell to give to that guy", "ABRAKADABRA") as null|anything in spells
if(!S) return
T.spell_list += new S
T.update_power_buttons()