From 4f13bef9b56b484307346239772bfedaa24bea14 Mon Sep 17 00:00:00 2001 From: Kyep Date: Tue, 31 Jul 2018 17:56:06 -0700 Subject: [PATCH] 'simple' -> 'simple_animal' --- code/_onclick/hud/other_mobs.dm | 6 +++--- code/_onclick/hud/screen_objects.dm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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