remove default dependency
This commit is contained in:
16
storage.lua
16
storage.lua
@@ -156,9 +156,7 @@ minetest.register_node("lwcomponents:storage_unit", {
|
||||
drawtype = "glasslike_framed",
|
||||
tiles = { "lwcomponents_storage_framed.png", "lwcomponents_storage.png" },
|
||||
is_ground_content = false,
|
||||
groups = { choppy = 2 },
|
||||
sounds = default.node_sound_wood_defaults (),
|
||||
paramtype = "none",
|
||||
groups = { choppy = 2 }, paramtype = "none",
|
||||
param1 = 0,
|
||||
paramtype2 = "none",
|
||||
param2 = 0,
|
||||
@@ -177,9 +175,7 @@ minetest.register_node("lwcomponents:storage_unit_locked", {
|
||||
drawtype = "glasslike_framed",
|
||||
tiles = { "lwcomponents_storage_framed.png", "lwcomponents_storage.png" },
|
||||
is_ground_content = false,
|
||||
groups = { choppy = 2 },
|
||||
sounds = default.node_sound_wood_defaults (),
|
||||
paramtype = "none",
|
||||
groups = { choppy = 2 }, paramtype = "none",
|
||||
param1 = 0,
|
||||
paramtype2 = "none",
|
||||
param2 = 0,
|
||||
@@ -1352,9 +1348,7 @@ minetest.register_node("lwcomponents:storage_indexer", {
|
||||
"lwcomponents_storage_indexer.png", "lwcomponents_storage_indexer.png",
|
||||
"lwcomponents_storage_indexer.png", "lwcomponents_storage_indexer.png",},
|
||||
is_ground_content = false,
|
||||
groups = table.copy (indexer_groups),
|
||||
sounds = default.node_sound_wood_defaults (),
|
||||
paramtype = "none",
|
||||
groups = table.copy (indexer_groups), paramtype = "none",
|
||||
param1 = 0,
|
||||
paramtype2 = "none",
|
||||
param2 = 0,
|
||||
@@ -1386,9 +1380,7 @@ minetest.register_node("lwcomponents:storage_indexer_locked", {
|
||||
"lwcomponents_storage_indexer.png", "lwcomponents_storage_indexer.png",
|
||||
"lwcomponents_storage_indexer.png", "lwcomponents_storage_indexer.png",},
|
||||
is_ground_content = false,
|
||||
groups = table.copy (indexer_groups),
|
||||
sounds = default.node_sound_wood_defaults (),
|
||||
paramtype = "none",
|
||||
groups = table.copy (indexer_groups), paramtype = "none",
|
||||
param1 = 0,
|
||||
paramtype2 = "none",
|
||||
param2 = 0,
|
||||
|
Reference in New Issue
Block a user