fix global warning

master
Vanessa Dannenberg 2019-04-20 10:12:40 -04:00
parent 6c93b3800e
commit 0e37dc7009
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ minetest.register_chatcommand("hotbar", {
params = "[size]",
description = "Sets the size of your hotbar",
func = function(name, slots)
hotbar_size = validate_size(tonumber(slots))
local hotbar_size = validate_size(tonumber(slots))
player_hotbar_settings[name] = hotbar_size
local player = minetest.get_player_by_name(name)
player:hud_set_hotbar_itemcount(hotbar_size)