Merge pull request #590 from Eearslya/fix-589

Allow the excavation drill to actually mine 30cm as advertised
This commit is contained in:
Cameron653
2016-09-25 11:03:35 -04:00
committed by GitHub
@@ -41,10 +41,10 @@
if(depth>30 || depth<1)
user << "<span class='notice'>Invalid depth.</span>"
return
excavation_amount = depth/2
excavation_amount = depth
user << "<span class='notice'>You set the depth to [depth]cm.</span>"
/obj/item/weapon/pickaxe/excavationdrill/examine(mob/user)
..()
var/depth = excavation_amount*2
var/depth = excavation_amount
user << "<span class='info'>It is currently set at [depth]cms.</span>"