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."