Various touch-up.
This commit is contained in:
parent
e6977e1a0a
commit
674f169090
@ -1,6 +1,6 @@
|
||||
-- LUALOCALS < ---------------------------------------------------------
|
||||
local minetest, nodecore
|
||||
= minetest, nodecore
|
||||
local minetest, nodecore, vector
|
||||
= minetest, nodecore, vector
|
||||
-- LUALOCALS > ---------------------------------------------------------
|
||||
|
||||
local pummeling = {}
|
||||
|
@ -1,6 +1,6 @@
|
||||
-- LUALOCALS < ---------------------------------------------------------
|
||||
local minetest, nodecore, pairs, type
|
||||
= minetest, nodecore, pairs, type
|
||||
= minetest, nodecore, pairs, type
|
||||
-- LUALOCALS > ---------------------------------------------------------
|
||||
|
||||
--[[
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 564 B After Width: | Height: | Size: 469 B |
@ -56,6 +56,6 @@ minetest.register_abm({
|
||||
action = function(pos, node)
|
||||
local above = {x = pos.x, y = pos.y + 1, z = pos.z}
|
||||
local place = {x = pos.x - 2, y = pos.y, z = pos.z - 2}
|
||||
minetest.place_schematic(place, nodecore.tree_schematic, "random", {})
|
||||
minetest.place_schematic(place, nodecore.tree_schematic, "random", {}, false)
|
||||
end
|
||||
})
|
||||
|
@ -16,6 +16,7 @@ minetest.register_node(modname .. ":stick", {
|
||||
},
|
||||
paramtype = "light",
|
||||
groups = {
|
||||
shafty = 1,
|
||||
snappy = 2,
|
||||
falling_repose = 1
|
||||
},
|
||||
@ -47,6 +48,7 @@ minetest.register_node(modname .. ":staff", {
|
||||
},
|
||||
paramtype = "light",
|
||||
groups = {
|
||||
shafty = 1,
|
||||
snappy = 2,
|
||||
falling_repose = 2
|
||||
},
|
||||
|
@ -1,6 +1,6 @@
|
||||
-- LUALOCALS < ---------------------------------------------------------
|
||||
local ItemStack, ipairs, minetest, nodecore
|
||||
= ItemStack, ipairs, minetest, nodecore
|
||||
= ItemStack, ipairs, minetest, nodecore
|
||||
-- LUALOCALS > ---------------------------------------------------------
|
||||
|
||||
local modname = minetest.get_current_modname()
|
||||
|
Loading…
x
Reference in New Issue
Block a user