diff --git a/CHANGELOG.md b/CHANGELOG.md index ce69186..d3381a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [Oct 19th 2024] Bugfix Update + +- Minor bugfixes + ## [Oct 12th - Oct 19th 2024] Update: Building and Farming Update - Start working on a new entity API to replace mobs_redo diff --git a/mods/ITEMS/pyutest_crafts/init.lua b/mods/ITEMS/pyutest_crafts/init.lua index db67ec9..3a37408 100644 --- a/mods/ITEMS/pyutest_crafts/init.lua +++ b/mods/ITEMS/pyutest_crafts/init.lua @@ -82,9 +82,9 @@ minetest.register_craft({ minetest.register_craft({ output = "pyutest_farming:hoe", recipe = { - {"pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot"}, - {"pyutest_tools:stick", ""}, - {"pyutest_tools:stick", ""} + {"pyutest_ores:iron_ingot", "pyutest_ores:iron_ingot", ""}, + {"", "pyutest_tools:stick", ""}, + {"", "pyutest_tools:stick", ""} } }) diff --git a/mods/ITEMS/pyutest_lootboxes/init.lua b/mods/ITEMS/pyutest_lootboxes/init.lua index ae40b42..ba4750f 100644 --- a/mods/ITEMS/pyutest_lootboxes/init.lua +++ b/mods/ITEMS/pyutest_lootboxes/init.lua @@ -29,7 +29,7 @@ PyuTest.make_lootbox = function (name, dname, items, spawn) } if spawn == true then - PyuTest.spawning_lootboxes[#PyuTest.spawning_lootboxes+1] = name + PyuTest.spawning_lootboxes[#PyuTest.spawning_lootboxes+1] = id end end