mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-28 19:21:48 +00:00
8 lines
266 B
Plaintext
8 lines
266 B
Plaintext
/**
|
|
* A spell targeting system which will return the caster as target
|
|
*/
|
|
/datum/spell_targeting/self
|
|
|
|
/datum/spell_targeting/self/choose_targets(mob/user, obj/effect/proc_holder/spell/spell, params, atom/clicked_atom)
|
|
return list(user) // That's how simple it is
|