Skip to content
Snippets Groups Projects
Commit 0ad3306c authored by tenplus1's avatar tenplus1 Committed by rubenwardy
Browse files

Farming: Remove unnecessary overriding of groups

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
parent 0f6e75bc
No related branches found
No related tags found
No related merge requests found
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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment