Remove sunlight propagation for various nodes
This commit is contained in:
parent
31f545202a
commit
7196485294
12 changed files with 0 additions and 45 deletions
|
@ -67,7 +67,6 @@ minetest.register_node("mcl_chests:"..basename, {
|
|||
_doc_items_hidden = hidden,
|
||||
tiles = tiles_table.small,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
stack_max = 64,
|
||||
drop = drop,
|
||||
|
@ -175,7 +174,6 @@ minetest.register_node("mcl_chests:"..basename, {
|
|||
minetest.register_node("mcl_chests:"..basename.."_left", {
|
||||
tiles = tiles_table.left,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
groups = {handy=1,axey=1, container=5,not_in_creative_inventory=1, material_wood=1},
|
||||
drop = drop,
|
||||
|
@ -291,7 +289,6 @@ minetest.register_node("mcl_chests:"..basename.."_left", {
|
|||
minetest.register_node("mcl_chests:"..basename.."_right", {
|
||||
tiles = tiles_table.right,
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
groups = {handy=1,axey=1, container=6,not_in_creative_inventory=1, material_wood=1},
|
||||
drop = drop,
|
||||
|
@ -579,7 +576,6 @@ minetest.register_node("mcl_chests:ender_chest", {
|
|||
is_ground_content = false,
|
||||
paramtype = "light",
|
||||
light_source = 7,
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
drop = "mcl_core:obsidian 8",
|
||||
|
@ -674,7 +670,6 @@ for color, desc in pairs(boxtypes) do
|
|||
stack_max = 1,
|
||||
drop = "",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
paramtype2 = "facedir",
|
||||
-- TODO: Make shulker boxes rotatable
|
||||
-- This doesn't work, it just destroys the inventory:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue