Skip to content

Commit

Permalink
Update xeno.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Git-Nivrak committed Jun 14, 2024
1 parent 841c0aa commit e908552
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/_onclick/xeno.dm
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@

if (!L.is_xeno_grabbable() || L == src) //Xenos never attack themselves.
continue
if(!isxeno(L))
var/isxeno = isxeno(L)
if(!isxeno)
non_xeno_target = L
if (L.body_position == LYING_DOWN)
alt = L
continue
else if (!isxeno(L))
else if (!isxeno)
break
target = L
if (target == T && alt)
Expand Down

0 comments on commit e908552

Please sign in to comment.