minor update

This commit is contained in:
IamPyu 2024-07-13 17:40:20 -06:00
parent eefa253359
commit f31d64c350
3 changed files with 15 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## [Jun 13th 2024] Unnamed Minor Update
- Add crafting recipe for slime
- Decrement hotbar slot count from 9 to 8
## [Jun 13th 2024] Update: Slimey Swamps
- Added swamps

View File

@ -169,6 +169,15 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "pyutest_core:slime_block",
type = "shapeless",
recipe = {
"pyutest_core:clay_block",
"pyutest_core:swampy_grass_block"
}
})
minetest.register_craft({
output = "pyutest_core:clay_block 4",
recipe = {

View File

@ -8,7 +8,7 @@ minetest.register_on_joinplayer(function (player)
player:get_inventory():set_width("main", 8)
player:get_inventory():set_size("main", 8 * 4)
player:hud_set_hotbar_itemcount(9)
player:hud_set_hotbar_itemcount(8)
-- creative mode privs
if minetest.is_creative_enabled(name) then