Files
Aurora.3/code/modules/spell_system/spells/spell_verb.dm
2020-03-25 13:08:11 +01:00

10 lines
211 B
Plaintext

/mob/proc/cast_spell(var/spell/spell in spell_list)
set category = "IC"
set name = "Cast"
set desc = "Cast a spell"
if(!LAZYLEN(spell_list))
src.verbs -= /mob/proc/cast_spell
return
spell.perform(usr)