From d9b04bc2635c8639c0c02e91c672c206c8e060f1 Mon Sep 17 00:00:00 2001 From: Redmoogle Date: Mon, 27 Jun 2022 12:36:13 -0400 Subject: [PATCH 1/2] Makes the hand drill pointy --- yogstation/code/game/objects/items/tools.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/yogstation/code/game/objects/items/tools.dm b/yogstation/code/game/objects/items/tools.dm index 5e803159f957..0d45b7618f71 100644 --- a/yogstation/code/game/objects/items/tools.dm +++ b/yogstation/code/game/objects/items/tools.dm @@ -99,6 +99,7 @@ usesound = 'sound/items/drill_use.ogg' toolspeed = 0.7 tool_behaviour = TOOL_SCREWDRIVER + sharpness = SHARP_POINTY /obj/item/handdrill/attack_self(mob/user) if (tool_behaviour == TOOL_SCREWDRIVER) @@ -125,6 +126,7 @@ desc = "A simple powered hand drill. It's fitted with a screw bit." icon_state = "drill_screw" tool_behaviour = TOOL_SCREWDRIVER + sharpness = SHARP_POINTY playsound(get_turf(user),'sound/items/change_drill.ogg',50,1) if (iscyborg(user)) to_chat(user,span_notice("Your servos whirr as the drill reconfigures into screw mode.")) From 4c02f4b118a19fb68867f40d8d54ffc61846326e Mon Sep 17 00:00:00 2001 From: Redmoogle Date: Mon, 27 Jun 2022 18:23:44 -0400 Subject: [PATCH 2/2] Blunt Wrench --- yogstation/code/game/objects/items/tools.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/yogstation/code/game/objects/items/tools.dm b/yogstation/code/game/objects/items/tools.dm index 0d45b7618f71..3c02f7f7d4cb 100644 --- a/yogstation/code/game/objects/items/tools.dm +++ b/yogstation/code/game/objects/items/tools.dm @@ -115,6 +115,7 @@ desc = "A simple powered hand drill. It's fitted with a bolt bit." icon_state = "drill_bolt" tool_behaviour = TOOL_WRENCH + sharpness = SHARP_NONE playsound(get_turf(user),'sound/items/change_drill.ogg',50,1) if (iscyborg(user)) to_chat(user,span_notice("Your servos whirr as the drill reconfigures into bolt mode."))