mirror of
https://github.com/minetest-mods/towercrane.git
synced 2024-11-22 07:13:52 +01:00
Merge pull request #13 from Montandalar/nodrops
Remove drops from tower crane nodes
This commit is contained in:
commit
00b14a2c37
4
init.lua
4
init.lua
@ -341,6 +341,7 @@ minetest.register_node("towercrane:balance", {
|
||||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
groups = {crumbly=0, not_in_creative_inventory=1},
|
||||
drop = "",
|
||||
})
|
||||
|
||||
minetest.register_node("towercrane:mast", {
|
||||
@ -358,6 +359,7 @@ minetest.register_node("towercrane:mast", {
|
||||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
groups = {crumbly=0, not_in_creative_inventory=1},
|
||||
drop = "",
|
||||
})
|
||||
|
||||
minetest.register_node("towercrane:arm", {
|
||||
@ -375,6 +377,7 @@ minetest.register_node("towercrane:arm", {
|
||||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
groups = {crumbly=0, not_in_creative_inventory=1},
|
||||
drop = "",
|
||||
})
|
||||
|
||||
minetest.register_node("towercrane:arm2", {
|
||||
@ -392,6 +395,7 @@ minetest.register_node("towercrane:arm2", {
|
||||
sunlight_propagates = true,
|
||||
is_ground_content = false,
|
||||
groups = {crumbly=0, not_in_creative_inventory=1},
|
||||
drop = "",
|
||||
})
|
||||
|
||||
if towercrane.recipe then
|
||||
|
Loading…
Reference in New Issue
Block a user