Files
factorio-scenario-ExpCluster/modules/commands/clear-inventory.lua
2019-04-18 23:29:21 +01:00

12 lines
459 B
Lua

local Commands = require 'expcore.commands'
local move_items = ext_require('expcore.common','move_items')
require 'config.command_parse_roles'
Commands.new_command('clear-inventory','Clears a players inventory')
:add_param('player',false,'player-role-alive')
:add_alias('clear-inv','move-inventory','move-inv')
:register(function(player,action_player)
local inv = action_player.get_main_inventory()
move_items(inv.get_contents())
inv.clear()
end)