Skip to content

Commit

Permalink
Fixes Warden Praetorians being able to move around the queen on ovi
Browse files Browse the repository at this point in the history
  • Loading branch information
Vicacrov committed Feb 9, 2024
1 parent 9aa33b9 commit 495192e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -926,16 +926,16 @@
to_chat(X, SPAN_XENODANGER("We cannot retrieve ourself!"))
return

if(X.anchored)
to_chat(X, SPAN_XENODANGER("That sister cannot move!"))
return

if(!(A in view(7, X)))
to_chat(X, SPAN_XENODANGER("That sister is too far away!"))
return

var/mob/living/carbon/xenomorph/targetXeno = A

if(targetXeno.anchored)
to_chat(X, SPAN_XENODANGER("That sister cannot move!"))
return

if(!(targetXeno.resting || targetXeno.stat == UNCONSCIOUS))
if(targetXeno.mob_size > MOB_SIZE_BIG)
to_chat(X, SPAN_WARNING("[targetXeno] is too big to retrieve while standing up!"))
Expand Down

0 comments on commit 495192e

Please sign in to comment.