From 63442401babee9fc862da04f5600fbb0e4f846f2 Mon Sep 17 00:00:00 2001 From: David G Date: Mon, 6 Apr 2020 12:39:40 -0700 Subject: [PATCH] Make gravel consistent with cobble. --- falling_nodes.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/falling_nodes.lua b/falling_nodes.lua index ccec8e1..2a699b5 100644 --- a/falling_nodes.lua +++ b/falling_nodes.lua @@ -1,3 +1,16 @@ +-- Make gravel digging consistent with cobble. +-- However, this could go either way. +-- With the default crumbly = 3, both cobble and gravel are easy to dig +-- by hand, so shovels aren't really necessary. +-- Setting crumbly = 2 for both, makes switching to shovels advantageous, +-- at the cost of making stone even more difficult to work. + +minetest.override_item("default:gravel", { + groups = {crumbly = 3, falling_nodes = 1}, +}) + +-- Make dirt nodes also falling. + minetest.override_item("default:dirt", { groups = {crumbly = 3, soil = 1, falling_node = 1}, })