From e5df4779bcc2d32f5afa9eace6013b7bf4eaf14f Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 17 Jul 2016 19:10:53 +0200 Subject: [PATCH] Fixes action buttons for simple animals --- code/modules/mob/living/simple_animal/simple_animal.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index a917c4551f5..c772dbef96e 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -595,8 +595,11 @@ //Dextrous simple mobs can use hands! /mob/living/simple_animal/create_mob_hud() - if(client && !hud_used && dextrous) - hud_used = new dextrous_hud_type(src, ui_style2icon(client.prefs.UI_style)) + if(client && !hud_used) + if(dextrous) + hud_used = new dextrous_hud_type(src, ui_style2icon(client.prefs.UI_style)) + else + ..() /mob/living/simple_animal/OpenCraftingMenu() if(dextrous)