From 640b01616d7a0c8a6bfc51fe2c07daa248173ac4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mikita=20Wi=C5=9Bniewski?= <rudzik8@protonmail.com>
Date: Sat, 11 Jan 2025 21:22:20 +0700
Subject: [PATCH] Patch respawned anchors for mcl_beds

---
 mods/ITEMS/mcl_beds/respawn_anchor.lua | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/mods/ITEMS/mcl_beds/respawn_anchor.lua b/mods/ITEMS/mcl_beds/respawn_anchor.lua
index 781a82953..b1f57ae42 100644
--- a/mods/ITEMS/mcl_beds/respawn_anchor.lua
+++ b/mods/ITEMS/mcl_beds/respawn_anchor.lua
@@ -55,12 +55,7 @@ for i=0,4 do
 			groups = {pickaxey=1, material_stone=1, not_in_creative_inventory=1},
 			_mcl_hardness = 22.5,
 			sounds= mcl_sounds.node_sound_stone_defaults(),
-			drop = {
-				max_items = 1,
-				items = {
-					{items = {"mcl_beds:respawn_anchor"}},
-				}
-			},
+			drop = "mcl_beds:respawn_anchor",
 			light_source = math.min((4 * i) - 1, minetest.LIGHT_MAX),
 			use_texture_alpha = "blend",
 		})