From f7472de36cf8df9b40edb3cca4584d748a155bac Mon Sep 17 00:00:00 2001 From: Adrer Date: Thu, 12 Sep 2024 18:59:46 +0200 Subject: [PATCH] [FIX] Floorbots now actually use the colour of the toolbox they were made of (#26730) * Floorbots now actually use the colour of the toolbox they were made of * Remove random newline --------- Co-authored-by: Adrer --- code/modules/mob/living/simple_animal/bot/floorbot.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/bot/floorbot.dm b/code/modules/mob/living/simple_animal/bot/floorbot.dm index f092c1db333..d1deee6abc4 100644 --- a/code/modules/mob/living/simple_animal/bot/floorbot.dm +++ b/code/modules/mob/living/simple_animal/bot/floorbot.dm @@ -412,6 +412,8 @@ /mob/living/simple_animal/bot/floorbot/update_overlays() . = ..() + if(toolbox_color) + . += "[toolbox_color]floorbot" if(mode == BOT_REPAIRING || mode == BOT_EAT_TILE || mode == BOT_MAKE_TILE) . += "floorbot_work" else