Debuged all functions

This commit is contained in:
Cooldude2606
2019-04-09 20:53:17 +01:00
parent d7474947f0
commit 73a319b220
9 changed files with 109 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
--- 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) then
return true
else
return reject()
end
end)