From 9595b0df596802908a83ec09daa169d533a17e7f Mon Sep 17 00:00:00 2001 From: kno10 Date: Wed, 31 Jul 2024 02:58:38 +0200 Subject: [PATCH] Inconsistent bed bouncyness, make top match bottom (#4495) Reviewed-on: https://git.minetest.land/VoxeLibre/VoxeLibre/pulls/4495 Reviewed-by: teknomunk Co-authored-by: kno10 Co-committed-by: kno10 --- mods/ITEMS/mcl_beds/api.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mods/ITEMS/mcl_beds/api.lua b/mods/ITEMS/mcl_beds/api.lua index b1f1ebec9..b96953017 100644 --- a/mods/ITEMS/mcl_beds/api.lua +++ b/mods/ITEMS/mcl_beds/api.lua @@ -286,8 +286,7 @@ function mcl_beds.register_bed(name, def) paramtype = "light", paramtype2 = "facedir", is_ground_content = false, - -- FIXME: Should be bouncy=66, but this would be a higher bounciness than slime blocks! - groups = {handy = 1, flammable = -1, bed = 2, dig_by_piston=1, bouncy=33, fall_damage_add_percent=-50, not_in_creative_inventory = 1}, + groups = {handy = 1, flammable = -1, bed = 2, dig_by_piston=1, bouncy=66, fall_damage_add_percent=-50, not_in_creative_inventory = 1}, _mcl_hardness = 0.2, _mcl_blast_resistance = 1, sounds = def.sounds or default_sounds,