mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-05-28 17:46:35 +01:00
576482907b
Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
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
|