diff --git a/data/ui_scripts/playlist/__init__.lua b/data/ui_scripts/playlist/__init__.lua index f5eb933f..80bdee19 100644 --- a/data/ui_scripts/playlist/__init__.lua +++ b/data/ui_scripts/playlist/__init__.lua @@ -2,8 +2,23 @@ if Engine.GetCurrentMap() ~= "core_frontend" then return end -Engine.GetLobbyMaxClients = function() - return 1 +if not CoD.LobbyMember then + return +end + +local oldLobbyMember = CoD.LobbyMember.new +function CoD.LobbyMember.new(menu, controller) + local self = oldLobbyMember(menu, controller) + + -- Hide the playlist count text + if self.SearchingForPlayer then + self.SearchingForPlayer:setAlpha(0) + end + if self.FEMemberBlurPanelContainer0 then + self.FEMemberBlurPanelContainer0:setAlpha(0) + end + + return self end function IsLobbyStatusVisible()