mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-09 16:49:35 +01:00
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:
parent
f1181d956a
commit
20f01a8ef7
2 changed files with 3 additions and 2 deletions
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue