Skip to content

Commit

Permalink
Fixes pounce targeting queen eye on the landing turf
Browse files Browse the repository at this point in the history
  • Loading branch information
fira committed Oct 23, 2023
1 parent 9961f9b commit 7df90ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/carbon/xenomorph/XenoProcs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@

/mob/living/carbon/xenomorph/proc/pounced_turf(turf/T)
if(!T.density)
for(var/mob/M in T)
pounced_mob(M)
for(var/mob/living/mob in T)
pounced_mob(mob)
break
else
turf_launch_collision(T)
Expand Down

0 comments on commit 7df90ff

Please sign in to comment.