From f5f15df94acb00fc9c79867379e3ebf980fbc381 Mon Sep 17 00:00:00 2001 From: tralezab <40974010+tralezab@users.noreply.github.com> Date: Wed, 3 Mar 2021 01:33:47 -0800 Subject: [PATCH] you must also roll..... (#57340) Minebots treads now make noise as they move! --- code/modules/mining/minebot.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mining/minebot.dm b/code/modules/mining/minebot.dm index 154a81ad02c..482d86e51a5 100644 --- a/code/modules/mining/minebot.dm +++ b/code/modules/mining/minebot.dm @@ -43,6 +43,9 @@ /mob/living/simple_animal/hostile/mining_drone/Initialize() . = ..() + + AddComponent(/datum/component/footstep, FOOTSTEP_OBJ_ROBOT, 1, -6, vary = TRUE) + stored_gun = new(src) var/datum/action/innate/minedrone/toggle_light/toggle_light_action = new() toggle_light_action.Grant(src)