minor update
This commit is contained in:
parent
eefa253359
commit
f31d64c350
@ -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
|
||||
|
@ -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 = {
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user