aboutsummaryrefslogtreecommitdiff
path: root/redefinitions.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 /redefinitions.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 'redefinitions.lua')
-rw-r--r--redefinitions.lua53
1 files changed, 0 insertions, 53 deletions
diff --git a/redefinitions.lua b/redefinitions.lua
index 9dc7ae3..d111389 100644
--- a/redefinitions.lua
+++ b/redefinitions.lua
@@ -45,56 +45,3 @@ minetest.register_craft({
type = "toolrepair",
additional_wear = -0.10, -- Tool repair buff (10% bonus instead of 2%).
})
-
--- Redefinitions of some default nodes
--- ===================================
-
--- Let there be light. This makes some nodes let light pass through:
-minetest.override_item("default:ladder", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:sapling", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:dry_shrub", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:papyrus", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:fence_wood", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:junglegrass", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:junglesapling", {
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-minetest.override_item("default:grass_1", {
- inventory_image = "default_grass_3.png", -- Use a bigger inventory image.
- wield_image = "default_grass_3.png",
- paramtype = "light",
- sunlight_propagates = true,
-})
-
-for i = 2, 5 do
- minetest.override_item("default:grass_" ..i, {
- paramtype = "light",
- sunlight_propagates = true,
- })
-end