Fixed Jail and server.interface

This commit is contained in:
Cooldude2606
2018-11-09 17:57:02 +00:00
parent d8ca2e0c9a
commit 7c00cfcaaa
4 changed files with 13 additions and 10 deletions

View File

@@ -4,9 +4,12 @@ script.on_event(defines.events.on_role_change,self.update)
return function()
local rtn = {}
local default = {}
for _,role_name in pairs(Role.order) do
local role = Role.get(role_name)
table.insert(rtn,{role.colour,role.short_hand,role:get_players(true),role.not_reportable})
if role.is_default then default = {role.colour,role.short_hand,role:get_players(true),role.not_reportable}
else table.insert(rtn,{role.colour,role.short_hand,role:get_players(true),role.not_reportable}) end
end
table.insert(rtn,default)
return rtn
end