mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
10 lines
211 B
Plaintext
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) |