Skip to content

Commit

Permalink
hole
Browse files Browse the repository at this point in the history
`attack_larva()` includes huggers too.
  • Loading branch information
SabreML committed Jan 12, 2024
1 parent af5a8e4 commit 370911c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/game/objects/effects/acid_hole.dm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


/obj/effect/acid_hole/attack_alien(mob/living/carbon/xenomorph/user)
if (!holed_wall)
if(!holed_wall)
qdel(src) //no wall?! then cease existence...
return

Expand All @@ -49,6 +49,9 @@
expand_hole(user)
return XENO_NO_DELAY_ACTION

/obj/effect/acid_hole/attack_larva(mob/living/carbon/xenomorph/larva/M)
attack_alien(M)

/obj/effect/acid_hole/proc/expand_hole(mob/living/carbon/xenomorph/user)
if(user.action_busy || user.is_mob_incapacitated())
return
Expand Down

0 comments on commit 370911c

Please sign in to comment.