[MIRROR] optimizes transfer (#12211)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-01-05 02:18:24 +01:00
committed by GitHub
co-authored by Kashargul Cameron Lennox
parent 9668392359
commit 61aa2b94be
35 changed files with 141 additions and 95 deletions
@@ -170,7 +170,7 @@
if(will_vore)
visible_message(span_warning("The shadowy tendrils grab around [L] and drag them into the floor, leaving nothing behind."))
L.forceMove(target)
target.nom_atom(L)
qdel(src)
return
@@ -170,13 +170,13 @@
if(potentials.len)
var/mob/living/target = pick(potentials)
if(can_phase_vore(src, target))
target.forceMove(vore_selected)
vore_selected.nom_atom(target)
to_chat(target, span_vwarning("\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.get_belly_name()]!"))
to_chat(src, span_vwarning("You phase around [target], [vore_selected.vore_verb]ing them into your [vore_selected.get_belly_name()]!"))
our_prey = target
else if(can_phase_vore(target, src))
our_prey = src
forceMove(target.vore_selected)
target.vore_selected.nom_atom(src)
to_chat(target, span_vwarning("\The [src] phases into you, [target.vore_selected.vore_verb]ing them into your [target.vore_selected.get_belly_name()]!"))
to_chat(src, span_vwarning("You phase into [target], having them [target.vore_selected.vore_verb] you into their [target.vore_selected.get_belly_name()]!"))
if(our_prey)