Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
realkhad committed Jul 27, 2023
1 parent cbe2ec9 commit a2259fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions code/modules/mob/living/carbon/xenomorph/Xenomorph.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1125,3 +1125,8 @@
SPAN_WARNING("You squeeze and scuttle underneath [current_structure]."), max_distance = 5)
forceMove(current_structure.loc)
return TRUE

/mob/living/carbon/xenomorph/knocked_down_callback()
. = ..()
if(!resting) // !resting because we dont wanna prematurely update wounds if they're just trying to rest
update_wounds()
3 changes: 0 additions & 3 deletions code/modules/mob/mob_status_procs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,6 @@
handle_regular_status_updates(FALSE)
update_canmove()
knocked_down_timer = null
if(isxeno(src) && !resting) // !resting because we dont wanna prematurely update wounds if they're just trying to rest
var/mob/living/carbon/xenomorph/xeno = src
xeno.update_wounds()

/mob/proc/knocked_down_callback_check()
if(knocked_down && knocked_down < recovery_constant)
Expand Down

0 comments on commit a2259fb

Please sign in to comment.