From de59b5affe866e20261d60f42171b4140c4bd0c7 Mon Sep 17 00:00:00 2001 From: OrionTheFox <76465278+OrionTheFox@users.noreply.github.com> Date: Thu, 23 Jun 2022 16:35:29 -0600 Subject: [PATCH] Removes the only Null toolspeed (#67890) all items have a toolspeed this could cause an error somewhere --- code/game/objects/items/tools/wrench.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/game/objects/items/tools/wrench.dm b/code/game/objects/items/tools/wrench.dm index 819c3242ce3..874b979c80c 100644 --- a/code/game/objects/items/tools/wrench.dm +++ b/code/game/objects/items/tools/wrench.dm @@ -89,7 +89,6 @@ attack_verb_continuous = list("devastates", "brutalizes", "commits a war crime against", "obliterates", "humiliates") attack_verb_simple = list("devastate", "brutalize", "commit a war crime against", "obliterate", "humiliate") tool_behaviour = null - toolspeed = null /obj/item/wrench/combat/Initialize(mapload) . = ..() @@ -111,10 +110,8 @@ if(active) tool_behaviour = TOOL_WRENCH - toolspeed = 1 else tool_behaviour = initial(tool_behaviour) - toolspeed = initial(toolspeed) balloon_alert(user, "[name] [active ? "active, woe!":"restrained"]") playsound(user ? user : src, active ? 'sound/weapons/saberon.ogg' : 'sound/weapons/saberoff.ogg', 5, TRUE)