paramtype light fixes from MCLA (#4763)

`paramtype` , not `paramtype1`

Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4763
Reviewed-by: the-real-herowl <the-real-herowl@noreply.git.minetest.land>
Co-authored-by: kno10 <erich.schubert@gmail.com>
Co-committed-by: kno10 <erich.schubert@gmail.com>
This commit is contained in:
kno10 2024-12-29 01:43:02 +01:00 committed by the-real-herowl
parent f1181d956a
commit 20f01a8ef7
2 changed files with 3 additions and 2 deletions

View file

@ -109,7 +109,7 @@ for _, def in pairs(bud_def) do
drop = "", drop = "",
tiles = {tile}, tiles = {tile},
inventory_image = inventory_image, inventory_image = inventory_image,
paramtype1 = "light", paramtype = "light",
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
drawtype = "plantlike", drawtype = "plantlike",
use_texture_alpha = "clip", use_texture_alpha = "clip",
@ -155,7 +155,7 @@ minetest.register_node("mcl_amethyst:amethyst_cluster",{
inventory_image = "mcl_amethyst_amethyst_cluster.png", inventory_image = "mcl_amethyst_amethyst_cluster.png",
paramtype2 = "wallmounted", paramtype2 = "wallmounted",
drawtype = "plantlike", drawtype = "plantlike",
paramtype1 = "light", paramtype = "light",
use_texture_alpha = "clip", use_texture_alpha = "clip",
sunlight_propagates = true, sunlight_propagates = true,
walkable = false, walkable = false,

View file

@ -223,6 +223,7 @@ minetest.register_node("mcl_grindstone:grindstone", {
"grindstone_front.png" "grindstone_front.png"
}, },
drawtype = "nodebox", drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir", paramtype2 = "facedir",
node_box = node_box, node_box = node_box,
selection_box = node_box, selection_box = node_box,