From 00210804b6e636eec20e4643e4be152d8a2bc130 Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Fri, 8 Feb 2019 18:22:19 +0000 Subject: [PATCH] Fixed Player list bug --- modules/ExpGamingPlayer/playerList/src/ranking.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ExpGamingPlayer/playerList/src/ranking.lua b/modules/ExpGamingPlayer/playerList/src/ranking.lua index 66a94eae..7ef48a58 100644 --- a/modules/ExpGamingPlayer/playerList/src/ranking.lua +++ b/modules/ExpGamingPlayer/playerList/src/ranking.lua @@ -6,7 +6,7 @@ return function() local rtn = {} local default = {} for _,role_name in pairs(Role.order) do - local role = Role.get(role_name) + local role = Role.get(role_name,true) 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