Skip to content

Commit

Permalink
Farming: Remove unnecessary overriding of groups
Browse files Browse the repository at this point in the history
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: #1286
  • Loading branch information
tenplus1 authored and rubenwardy committed Sep 27, 2016
1 parent 0f6e75b commit 0ad3306
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions 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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 0ad3306

Please sign in to comment.