aboutsummaryrefslogtreecommitdiff
path: root/nodes.lua
diff options
context:
space:
mode:
authorThomas--S <Thomas--S@users.noreply.github.com>2016-07-12 21:55:15 +0200
committerAuke Kok <sofar+github@foo-projects.org>2016-07-12 12:55:15 -0700
commit34c01e66c78031ec367fd463f947f790affea4f4 (patch)
treefe5a5e1a641032a854c0720d1ce9b61a157b7152 /nodes.lua
parent26a5273dd69e99b904880ebc69a2764694db3c41 (diff)
downloadmoreblocks-34c01e66c78031ec367fd463f947f790affea4f4.tar.gz
moreblocks-34c01e66c78031ec367fd463f947f790affea4f4.tar.bz2
moreblocks-34c01e66c78031ec367fd463f947f790affea4f4.zip
Remove unnecessary things (#47)
* Removed Junglwood fences -> Alias with default:fence_junglewood * Removed Jungle stick -> Alias with default:stick * Removed unnecessary redefinitions because all the overridden options are the same as in minetest_game.
Diffstat (limited to 'nodes.lua')
-rw-r--r--nodes.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/nodes.lua b/nodes.lua
index 2d35cd2..8e81131 100644
--- a/nodes.lua
+++ b/nodes.lua
@@ -239,21 +239,6 @@ local nodes = {
sounds = sound_glass,
no_stairs = true,
},
- ["fence_jungle_wood"] = {
- description = S("Jungle Wood Fence"),
- drawtype = "fencelike",
- tiles = {"default_junglewood.png"},
- inventory_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126",
- wield_image = "default_fence_overlay.png^default_junglewood.png^default_fence_overlay.png^[makealpha:255,126,126",
- paramtype = "light",
- selection_box = {
- type = "fixed",
- fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
- },
- groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
- sounds = sound_wood,
- no_stairs = true,
- },
["all_faces_tree"] = {
description = S("All-faces Tree"),
tiles = {"default_tree_top.png"},
@@ -364,12 +349,6 @@ minetest.register_craftitem("moreblocks:sweeper", {
inventory_image = "moreblocks_sweeper.png",
})
-minetest.register_craftitem("moreblocks:jungle_stick", {
- description = S("Jungle Stick"),
- inventory_image = "moreblocks_junglestick.png",
- groups = {stick= 1},
-})
-
minetest.register_craftitem("moreblocks:nothing", {
inventory_image = "invisible.png",
on_use = function() end,