Replace deprecated functions with newer ones

This commit is contained in:
Panquesito7 2019-08-22 20:01:35 -05:00 committed by GitHub
parent 15e47f354b
commit 0f8d88a821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
local hotbar_size = minetest.setting_get("hotbar_size") or 16
local health_visible = minetest.setting_getbool("hotbar_health_visible") or false
local minimap_visible = minetest.setting_getbool("enable_minimap") or false
local hotbar_size = minetest.settings:get("hotbar_size") or 16
local health_visible = minetest.settings:get_bool("hotbar_health_visible") or false
local minimap_visible = minetest.settings:get_bool("enable_minimap") or false
minetest.register_on_joinplayer(function(player)
player:hud_set_hotbar_itemcount(hotbar_size)