diff --git a/modular_zzplurt/code/modules/species/teshari.dm b/modular_zzplurt/code/modules/species/teshari.dm index 4cbbfda92c0ce..68297d53fb15f 100644 --- a/modular_zzplurt/code/modules/species/teshari.dm +++ b/modular_zzplurt/code/modules/species/teshari.dm @@ -39,10 +39,10 @@ var/feedback = list() feedback += "There are noises of movement " - var/direction = get_dir(src, living) + var/direction = get_dir(owner, living) if(direction) feedback += "towards the [dir2text(direction)], " - switch(get_dist(src, living) / 7) + switch(get_dist(owner, living) / 7) if(0 to 0.2) feedback += "very close by." if(0.2 to 0.4) diff --git a/modular_zzplurt/code/modules/species/xeno.dm b/modular_zzplurt/code/modules/species/xeno.dm index 1ff5654ac7e6f..bd3ccb97b42e5 100644 --- a/modular_zzplurt/code/modules/species/xeno.dm +++ b/modular_zzplurt/code/modules/species/xeno.dm @@ -90,7 +90,7 @@ owner.dropItemToGround(wielded, force = TRUE, silent = TRUE) new /obj/effect/gibspawner/human(get_turf(owner), owner) - owner.visible_message(span_danger("
The lifeless husk of [src] bursts open, revealing a new, intact copy in the pool of viscera.
")) //Bloody hell... + owner.visible_message(span_danger("The lifeless husk of [owner] bursts open, revealing a new, intact copy in the pool of viscera.
")) //Bloody hell... owner.nutrition = result_nutrition COOLDOWN_START(src, revive_cd, 10 MINUTES) @@ -117,7 +117,7 @@ action_state = ACTION_STATE_STANDBY /datum/action/innate/reconstitute_form/proc/ready_revive() - to_chat(src, span_notice("Consciousness begins to stir as your new body awakens, ready to hatch.")) + to_chat(owner, span_notice("Consciousness begins to stir as your new body awakens, ready to hatch.")) revive_timer = 0 action_state = ACTION_STATE_HATCH