mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 21:49:11 +01:00
Merge pull request #590 from Eearslya/fix-589
Allow the excavation drill to actually mine 30cm as advertised
This commit is contained in:
@@ -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>"
|
||||
|
||||
Reference in New Issue
Block a user