This commit is contained in:
IamPyu 2024-10-19 16:48:58 -06:00
parent 0d02674e15
commit dd9f883937
3 changed files with 8 additions and 4 deletions

View File

@ -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

View File

@ -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", ""}
}
})

View File

@ -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