GreenDimond wrote:So...is the large_hotbar a mod you made yourself? Because I cant find it anywhere...and I really want it...
Yes, it's a tiny mod that enlarges the hotbar.
If you want it yourself, create a folder called
large_hotbar/, create an
init.lua file inside and write this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
- Code: Select all
-- large_hotbar: Makes the hotbar larger
-- Copyright (c) 2015 Calinou
-- CC0 1.0 Universal
custom_hotbar_size = tonumber(minetest.setting_get("large_hotbar.size"))
minetest.register_on_joinplayer(function(player)
player:hud_set_hotbar_itemcount(custom_hotbar_size or 16)
end)
Then move this folder to your Minetest installation's
mods/ folder.