summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThatGraemeGuy <thatgraemeguy@users.noreply.github.com>2017-01-30 12:14:26 +0200
committerThatGraemeGuy <thatgraemeguy@users.noreply.github.com>2017-01-30 12:14:26 +0200
commit5dd61911759bd452009e27c4f2d5b337f49f55c7 (patch)
treea62870470a09b864008b2532305cbb8205744521
parent06dec2032628b475c4f02dfc9e92a58788d0912d (diff)
Make mk3 drill in 3x3 mode drill nodes from top to bottom
-rw-r--r--technic/tools/mining_drill.lua10
1 files changed, 6 insertions, 4 deletions
diff --git a/technic/tools/mining_drill.lua b/technic/tools/mining_drill.lua
index 8a25abe..487804d 100644
--- a/technic/tools/mining_drill.lua
+++ b/technic/tools/mining_drill.lua
@@ -71,20 +71,21 @@ local function drill_dig_it1 (player)
end
local function drill_dig_it2 (pos,player)
+ pos.y=pos.y+1
drill_dig_it0 (pos,player)
pos.z=pos.z+1
drill_dig_it0 (pos,player)
pos.z=pos.z-2
drill_dig_it0 (pos,player)
pos.z=pos.z+1
- pos.y=pos.y+1
+ pos.y=pos.y-1
drill_dig_it0 (pos,player)
pos.z=pos.z+1
drill_dig_it0 (pos,player)
pos.z=pos.z-2
drill_dig_it0 (pos,player)
pos.z=pos.z+1
- pos.y=pos.y-2
+ pos.y=pos.y-1
drill_dig_it0 (pos,player)
pos.z=pos.z+1
drill_dig_it0 (pos,player)
@@ -93,20 +94,21 @@ local function drill_dig_it2 (pos,player)
end
local function drill_dig_it3 (pos,player)
+ pos.y=pos.y+1
drill_dig_it0 (pos,player)
pos.x=pos.x+1
drill_dig_it0 (pos,player)
pos.x=pos.x-2
drill_dig_it0 (pos,player)
pos.x=pos.x+1
- pos.y=pos.y+1
+ pos.y=pos.y-1
drill_dig_it0 (pos,player)
pos.x=pos.x+1
drill_dig_it0 (pos,player)
pos.x=pos.x-2
drill_dig_it0 (pos,player)
pos.x=pos.x+1
- pos.y=pos.y-2
+ pos.y=pos.y-1
drill_dig_it0 (pos,player)
pos.x=pos.x+1
drill_dig_it0 (pos,player)