Various touch-up.

This commit is contained in:
Aaron Suen 2018-11-05 00:21:02 -05:00
parent e6977e1a0a
commit 674f169090
6 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,6 @@
-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
local minetest, nodecore, vector
= minetest, nodecore, vector
-- LUALOCALS > ---------------------------------------------------------
local pummeling = {}

View File

@ -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

View File

@ -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
})

View File

@ -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
},

View File

@ -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()