diff --git a/code/_onclick/hud/alien.dm b/code/_onclick/hud/alien.dm index 60e3e4f7503..3c1b1029a3e 100644 --- a/code/_onclick/hud/alien.dm +++ b/code/_onclick/hud/alien.dm @@ -87,6 +87,12 @@ pull_icon.update_appearance() pull_icon.screen_loc = ui_above_movement static_inventory += pull_icon + + rest_icon = new /atom/movable/screen/rest(null, src) + rest_icon.icon = ui_style + rest_icon.screen_loc = ui_above_intent + rest_icon.update_appearance() + static_inventory += rest_icon //begin indicators diff --git a/code/_onclick/hud/alien_larva.dm b/code/_onclick/hud/alien_larva.dm index 7d3b50da0c7..d9ebb3611b6 100644 --- a/code/_onclick/hud/alien_larva.dm +++ b/code/_onclick/hud/alien_larva.dm @@ -22,6 +22,12 @@ pull_icon.screen_loc = ui_above_movement hotkeybuttons += pull_icon + rest_icon = new /atom/movable/screen/rest(null, src) + rest_icon.icon = ui_style + rest_icon.screen_loc = ui_above_intent + rest_icon.update_appearance() + static_inventory += rest_icon + using = new/atom/movable/screen/language_menu(null, src) using.screen_loc = ui_alien_language_menu static_inventory += using diff --git a/icons/hud/screen_alien.dmi b/icons/hud/screen_alien.dmi index 82d0ed2f9f9..21d7cde0b03 100644 Binary files a/icons/hud/screen_alien.dmi and b/icons/hud/screen_alien.dmi differ