Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
fira committed Dec 5, 2023
1 parent 52c4410 commit fa734a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@
/mob/living/carbon/xenomorph/resist_grab(moving_resist)
if(!pulledby)
return
if(pulledby && pulledby?.pulling != pulledby && !debug_pulledby_warned)
if(pulledby && pulledby?.pulling != src && !debug_pulledby_warned)
debug_pulledby_warned = TRUE
debug_pulledby()
if(pulledby.grab_level)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mob/living/living.dm
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
/mob/living/resist_grab(moving_resist)
if(!pulledby)
return
if(pulledby && pulledby?.pulling != pulledby && !debug_pulledby_warned)
if(pulledby && pulledby?.pulling != src && !debug_pulledby_warned)
debug_pulledby_warned = TRUE
debug_pulledby()
if(pulledby.grab_level)
Expand Down

0 comments on commit fa734a2

Please sign in to comment.