projects
/
oweals
/
minetest_game.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f6e75b
)
Farming: Remove unnecessary overriding of groups
author
tenplus1
<tenplus1@users.noreply.github.com>
Tue, 27 Sep 2016 10:12:04 +0000
(11:12 +0100)
committer
rubenwardy
<rubenwardy@gmail.com>
Tue, 27 Sep 2016 16:03:50 +0000
(17:03 +0100)
This removes the group overrides for dirt, dirt_with_grass and dirt_with_dry_grass which aren't needed and interfere with new grass spreading changes: https://github.com/minetest/minetest_game/pull/1286
mods/farming/nodes.lua
patch
|
blob
|
history
diff --git
a/mods/farming/nodes.lua
b/mods/farming/nodes.lua
index 9fa66c30ff702056e09b0f56ccc462cf50c30577..c75e1e502e7d5bf9f0ccd90f51187cb4f7e83db7 100644
(file)
--- a/
mods/farming/nodes.lua
+++ b/
mods/farming/nodes.lua
@@
-1,5
+1,4
@@
minetest.override_item("default:dirt", {
- groups = {crumbly=3, soil=1},
soil = {
base = "default:dirt",
dry = "farming:soil",
@@
-8,7
+7,6
@@
minetest.override_item("default:dirt", {
})
minetest.override_item("default:dirt_with_grass", {
- groups = {crumbly=3, soil=1},
soil = {
base = "default:dirt_with_grass",
dry = "farming:soil",
@@
-17,7
+15,6
@@
minetest.override_item("default:dirt_with_grass", {
})
minetest.override_item("default:dirt_with_dry_grass", {
- groups = {crumbly=3, soil=1},
soil = {
base = "default:dirt_with_dry_grass",
dry = "farming:soil",