Skip to content

Commit

Permalink
State check for the sending note
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaga-404 committed Mar 22, 2024
1 parent 47e5cbc commit 174c8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/ammo/bullet/sniper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
if(isxeno(target_mob) && isxeno(old_target?.resolve()))
var/mob/living/carbon/xenomorph/old_xeno = old_target.resolve()
var/mob/living/carbon/xenomorph/new_xeno = target_mob
if(old_xeno.hive == new_xeno.hive)
if((old_xeno.hive == new_xeno.hive) && !(old_xeno.stat)) // Must be in same hive and conscious
to_chat(old_xeno,SPAN_XENOLEADER("We sense that the far-spitter host is targeting another sister."))
if(2)
to_chat(aimed_projectile.firer, SPAN_WARNING("Two hits! You're starting to get a good read on the target's patterns."))
Expand Down

0 comments on commit 174c8ba

Please sign in to comment.