mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 22:02:32 +01:00
Fix mining drill digging in the wrong direction
This commit is contained in:
parent
2df417feb7
commit
8e2cb0121b
@ -172,9 +172,9 @@ local function drill_dig_it(pos, player, drill_type, mode)
|
|||||||
end
|
end
|
||||||
if dir==3 then -- z-
|
if dir==3 then -- z-
|
||||||
drill_dig_it0 (pos,player)
|
drill_dig_it0 (pos,player)
|
||||||
pos.z=pos.z+1
|
pos.z=pos.z-1
|
||||||
drill_dig_it0 (pos,player)
|
drill_dig_it0 (pos,player)
|
||||||
pos.z=pos.z+1
|
pos.z=pos.z-1
|
||||||
drill_dig_it0 (pos,player)
|
drill_dig_it0 (pos,player)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user