Skip to content

Commit

Permalink
gayhaps
Browse files Browse the repository at this point in the history
  • Loading branch information
NullDagaf committed Aug 11, 2024
1 parent 3754928 commit 73f1354
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modular_zzplurt/code/modules/species/teshari.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions modular_zzplurt/code/modules/species/xeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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("<p><font size=4>The lifeless husk of [src] bursts open, revealing a new, intact copy in the pool of viscera.</font></p>")) //Bloody hell...
owner.visible_message(span_danger("<p><font size=4>The lifeless husk of [owner] bursts open, revealing a new, intact copy in the pool of viscera.</font></p>")) //Bloody hell...

owner.nutrition = result_nutrition
COOLDOWN_START(src, revive_cd, 10 MINUTES)
Expand All @@ -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
Expand Down

0 comments on commit 73f1354

Please sign in to comment.