From b2d1289353b1676a5d2823f5007aca7217deb20e Mon Sep 17 00:00:00 2001 From: tenplus1 Date: Thu, 6 Jul 2023 13:01:40 +0100 Subject: [PATCH] tweak hemp block/stairs groups --- crops/hemp.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crops/hemp.lua b/crops/hemp.lua index da5d568..dabbd9b 100644 --- a/crops/hemp.lua +++ b/crops/hemp.lua @@ -102,7 +102,7 @@ minetest.register_node("farming:hemp_block", { description = S("Hemp Block"), tiles = {"farming_hemp_block.png"}, paramtype = "light", - groups = {snappy = 1, oddly_breakable_by_hand = 1, flammable = 2}, + groups = {snappy = 2, oddly_breakable_by_hand = 1, flammable = 2}, sounds = default.node_sound_leaves_defaults() }) @@ -121,14 +121,14 @@ if minetest.global_exists("stairs") then if stairs.mod and stairs.mod == "redo" then stairs.register_all("hemp_block", "farming:hemp_block", - {snappy = 1, flammable = 2}, + {snappy = 2, oddly_breakable_by_hand = 1, flammable = 2}, {"farming_hemp_block.png"}, "Hemp Block", default.node_sound_leaves_defaults()) else stairs.register_stair_and_slab("hemp_block", "farming:hemp_block", - {snappy = 1, flammable = 2}, + {snappy = 2, oddly_breakable_by_hand = 1, flammable = 2}, {"farming_hemp_block.png"}, "Hemp Block Stair", "Hemp Block Slab",