Skip to content

Commit

Permalink
buckling (#18203)
Browse files Browse the repository at this point in the history
  • Loading branch information
hal9000PR authored Jul 3, 2022
1 parent 3613019 commit 9a86471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/living/simple_animal/simple_animal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
health = clamp(health, 0, maxHealth)
med_hud_set_health()

/mob/living/simple_animal/lay_down()
/mob/living/simple_animal/on_lying_down(new_lying_angle)
..()
if(icon_resting && stat != DEAD)
icon_state = icon_resting
Expand All @@ -173,7 +173,7 @@
regenerate_icons()
ADD_TRAIT(src, TRAIT_IMMOBILIZED, LYING_DOWN_TRAIT) //simple mobs cannot crawl

/mob/living/simple_animal/stand_up()
/mob/living/simple_animal/on_standing_up()
..()
if(icon_resting && stat != DEAD)
icon_state = icon_living
Expand Down

0 comments on commit 9a86471

Please sign in to comment.