Skip to content

Commit

Permalink
Fix hiding when busy
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Jul 25, 2023
1 parent 16c8952 commit 2f32e13
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,9 @@
var/mob/living/carbon/xenomorph/xeno = owner
if(!xeno.check_state(TRUE))
return
if (!action_cooldown_check())
if(!action_cooldown_check())
return
if(xeno.action_busy)
return
if(xeno.layer != XENO_HIDING_LAYER)
xeno.layer = XENO_HIDING_LAYER
Expand Down

0 comments on commit 2f32e13

Please sign in to comment.