From 213a7bef3f7c8f21ab48e8b66c449a9195ea92e3 Mon Sep 17 00:00:00 2001 From: Eearslya Date: Sun, 25 Sep 2016 07:18:15 -0700 Subject: [PATCH] Allow the excavation drill to actually mine 30cm as advertised --- code/modules/xenoarcheaology/tools/tools_pickaxe_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/xenoarcheaology/tools/tools_pickaxe_vr.dm b/code/modules/xenoarcheaology/tools/tools_pickaxe_vr.dm index 80642af099e..50063b6bd64 100644 --- a/code/modules/xenoarcheaology/tools/tools_pickaxe_vr.dm +++ b/code/modules/xenoarcheaology/tools/tools_pickaxe_vr.dm @@ -41,10 +41,10 @@ if(depth>30 || depth<1) user << "Invalid depth." return - excavation_amount = depth/2 + excavation_amount = depth user << "You set the depth to [depth]cm." /obj/item/weapon/pickaxe/excavationdrill/examine(mob/user) ..() - var/depth = excavation_amount*2 + var/depth = excavation_amount user << "It is currently set at [depth]cms."