Removed player config level and useing error command

This commit is contained in:
Kevin Taylor
2020-05-16 17:45:10 +01:00
parent ffbc96fb84
commit 408b5d7abd
2 changed files with 4 additions and 6 deletions

View File

@@ -2,7 +2,5 @@
-- @config Preset-Player-Quickbar
return {
players={ --- @setting players list of all players and their quickbar items
dangerarea={'transport-belt','fast-transport-belt'}
}
dangerarea={'transport-belt','fast-transport-belt'}
}

View File

@@ -14,12 +14,12 @@ require 'config.expcore.command_general_parse'
-- @command load-quickbar
Commands.new_command('load-quickbar','Loads your preset Quickbar items')
:register(function(player)
if config.players[player.name] then
local custom_quickbar = config.players[player.name]
if config[player.name] then
local custom_quickbar = config[player.name]
for i, item_name in ipairs(custom_quickbar) do
player.set_quick_bar_slot(i, item_name)
end
else
Commands.print('Quickbar preset not found','red')
Commands.error('Quickbar preset not found')
end
end)