Fix mining drill digging in the wrong direction

This commit is contained in:
ShadowNinja 2013-12-23 16:54:21 -05:00
parent 2df417feb7
commit 8e2cb0121b
1 changed files with 2 additions and 2 deletions

View File

@ -172,9 +172,9 @@ local function drill_dig_it(pos, player, drill_type, mode)
end
if dir==3 then -- z-
drill_dig_it0 (pos,player)
pos.z=pos.z+1
pos.z=pos.z-1
drill_dig_it0 (pos,player)
pos.z=pos.z+1
pos.z=pos.z-1
drill_dig_it0 (pos,player)
end
end