Fix some code identation
This commit is contained in:
parent
9d6c62f8d5
commit
68b2d13365
64
init.lua
64
init.lua
@ -34,35 +34,35 @@ function axinitium.get_3x3s(pos, digger)
|
|||||||
|
|
||||||
local c = 1
|
local c = 1
|
||||||
for x=-1,1 do
|
for x=-1,1 do
|
||||||
for y=-1,1 do
|
for y=-1,1 do
|
||||||
if x ~= 0 or y ~= 0 then
|
if x ~= 0 or y ~= 0 then
|
||||||
-- determine next perpendicular node
|
-- determine next perpendicular node
|
||||||
local k = {x=0, y=0, z=0}
|
local k = {x=0, y=0, z=0}
|
||||||
if a > 0 then
|
if a > 0 then
|
||||||
k.z = pos.z + x
|
k.z = pos.z + x
|
||||||
if b > 0 then
|
if b > 0 then
|
||||||
k.x = pos.x + y
|
k.x = pos.x + y
|
||||||
k.y = pos.y
|
k.y = pos.y
|
||||||
|
else
|
||||||
|
k.x = pos.x
|
||||||
|
k.y = pos.y + y
|
||||||
|
end
|
||||||
else
|
else
|
||||||
k.x = pos.x
|
k.x = pos.x + x
|
||||||
k.y = pos.y + y
|
if b > 0 then
|
||||||
|
k.y = pos.y
|
||||||
|
k.z = pos.z + y
|
||||||
|
else
|
||||||
|
k.y = pos.y + y
|
||||||
|
k.z = pos.z
|
||||||
|
end
|
||||||
end
|
end
|
||||||
else
|
|
||||||
k.x = pos.x + x
|
|
||||||
if b > 0 then
|
|
||||||
k.y = pos.y
|
|
||||||
k.z = pos.z + y
|
|
||||||
else
|
|
||||||
k.y = pos.y + y
|
|
||||||
k.z = pos.z
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
r[c] = {x=k.x, y=k.y, z=k.z}
|
r[c] = {x=k.x, y=k.y, z=k.z}
|
||||||
c = c + 1
|
c = c + 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
return r
|
return r
|
||||||
end
|
end
|
||||||
@ -92,16 +92,16 @@ function axinitium.get_chopped(pos, group)
|
|||||||
|
|
||||||
-- 3x3s upward till we run out of tree
|
-- 3x3s upward till we run out of tree
|
||||||
for x=-1,1 do
|
for x=-1,1 do
|
||||||
for z=-1,1 do
|
for z=-1,1 do
|
||||||
p.x = pos.x + x
|
p.x = pos.x + x
|
||||||
p.z = pos.z + z
|
p.z = pos.z + z
|
||||||
if minetest.get_item_group(minetest.get_node(p).name, group) > 0 then
|
if minetest.get_item_group(minetest.get_node(p).name, group) > 0 then
|
||||||
b = 0
|
b = 0
|
||||||
r[c] = {x=p.x, y=p.y, z=p.z}
|
r[c] = {x=p.x, y=p.y, z=p.z}
|
||||||
c = c + 1
|
c = c + 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
end
|
end
|
||||||
return r
|
return r
|
||||||
end
|
end
|
||||||
|
16
tools.lua
16
tools.lua
@ -6,15 +6,15 @@ minetest.register_tool("axinitium:pickaxe", {
|
|||||||
groups = {pick=2},
|
groups = {pick=2},
|
||||||
inventory_image = "pickaxe.png",
|
inventory_image = "pickaxe.png",
|
||||||
range = 8,
|
range = 8,
|
||||||
tool_capabilities = {
|
tool_capabilities = {
|
||||||
full_punch_interval = 0.9,
|
full_punch_interval = 0.9,
|
||||||
max_drop_level=3,
|
max_drop_level=3,
|
||||||
groupcaps={
|
groupcaps={
|
||||||
cracky = {times={[1]=2.0, [2]=1.0, [3]=0.50}, uses=50, maxlevel=3},
|
cracky = {times={[1]=2.0, [2]=1.0, [3]=0.50}, uses=50, maxlevel=3},
|
||||||
},
|
|
||||||
damage_groups = {fleshy=5},
|
|
||||||
},
|
},
|
||||||
})
|
damage_groups = {fleshy=5},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
--Register Axinite Axe
|
--Register Axinite Axe
|
||||||
minetest.register_tool("axinitium:axe", {
|
minetest.register_tool("axinitium:axe", {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user