Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ihatethisengine committed Jun 21, 2024
1 parent 772d2f3 commit 8b64bfb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/__DEFINES/mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,6 @@ GLOBAL_LIST_INIT(default_xeno_onmob_icons, list(
/// can lie down
#define MOBILITY_LIEDOWN (1<<8)

#define MOBILITY_FLAGS_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND)
#define MOBILITY_FLAGS_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_LIEDOWN)
#define MOBILITY_FLAGS_CARBON_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN)
#define MOBILITY_FLAGS_REST_CAPABLE_DEFAULT (MOBILITY_MOVE | MOBILITY_STAND | MOBILITY_REST | MOBILITY_LIEDOWN)
1 change: 1 addition & 0 deletions code/modules/mob/living/simple_animal/friendly/mouse.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
src.icon_dead = "mouse_[body_color]_splat"
src.icon_state = "mouse_[body_color]_splat"
layer = ABOVE_LYING_MOB_LAYER
set_body_position(LYING_DOWN)
if(client)
client.time_died_as_mouse = world.time

Expand Down
1 change: 1 addition & 0 deletions code/modules/mob/living/simple_animal/simple_animal.dm
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@
SSmob.living_misc_mobs -= src
icon_state = icon_dead
black_market_value = dead_black_market_value
set_body_position(LYING_DOWN)


/mob/living/simple_animal/gib(datum/cause_data/cause = create_cause_data("gibbing", src))
Expand Down

0 comments on commit 8b64bfb

Please sign in to comment.