diff --git a/code/_onclick/hud/other_mobs.dm b/code/_onclick/hud/other_mobs.dm index be9b78dc1e2..8cf38a88eb9 100644 --- a/code/_onclick/hud/other_mobs.dm +++ b/code/_onclick/hud/other_mobs.dm @@ -1,10 +1,10 @@ /mob/living/simple_animal/create_mob_hud() - hud_used = new /datum/hud/simple(src) + hud_used = new /datum/hud/simple_animal(src) -/datum/hud/simple/New(mob/user) +/datum/hud/simple_animal/New(mob/user) ..() var/obj/screen/using - using = new /obj/screen/act_intent/simple() + using = new /obj/screen/act_intent/simple_animal() using.icon_state = mymob.a_intent static_inventory += using action_intent = using diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm index 89917bb2cc1..50e4bedca10 100644 --- a/code/_onclick/hud/screen_objects.dm +++ b/code/_onclick/hud/screen_objects.dm @@ -95,7 +95,7 @@ icon_state = "running" -/obj/screen/act_intent/simple +/obj/screen/act_intent/simple_animal icon = 'icons/mob/screen_robot.dmi' screen_loc = ui_acti