Skip to content

Commit

Permalink
[MIRROR] Fixes Baystation12#34407
Browse files Browse the repository at this point in the history
  • Loading branch information
emmanuelbassil authored and SuhEugene committed Dec 23, 2023
1 parent a97b712 commit a982960
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/game/machinery/doors/door.dm
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,13 @@
..()

/obj/machinery/door/attack_hand(mob/user)
if ((. = ..()))
return

if (MUTATION_FERAL in user.mutations)
attack_generic(user, 15)
return

..()
if (allowed(user) && operable())
if (density)
open()
Expand Down

0 comments on commit a982960

Please sign in to comment.