Files
factorio-scenario-ExpCluster/config/command_auth_roles.lua
2019-04-09 21:22:07 +01:00

11 lines
362 B
Lua

--- This will make commands only work if the role has been allowed it in the role config
local Commands = require 'expcore.commands'
local Roles = require 'expcore.roles'
Commands.add_authenticator(function(player,command,tags,reject)
if Roles.player_allowed(player,'command/'..command) then
return true
else
return reject()
end
end)