From 81e104a80af961ba8f5a96a089df0d8f7cbe5ffa Mon Sep 17 00:00:00 2001 From: Zach Date: Sat, 30 May 2015 07:56:05 -0500 Subject: [PATCH] 255 > 8 --- toontown/uberdog/DistributedLobbyManagerAI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toontown/uberdog/DistributedLobbyManagerAI.py b/toontown/uberdog/DistributedLobbyManagerAI.py index 6a39c443..50c4cc2b 100644 --- a/toontown/uberdog/DistributedLobbyManagerAI.py +++ b/toontown/uberdog/DistributedLobbyManagerAI.py @@ -113,8 +113,8 @@ class DistributedLobbyManagerAI(DistributedObjectAI): for lobbyId in self.pubLobbyInfo: lobby = self.pubLobbyInfo[lobbyId] toons = lobby.get('numToons', 0) - if toons > 255: - toons = 255 + if toons > 8: + toons = 8 elif toons < 0: toons = 0 p.append([lobby['shardId'], lobby['zoneId'], toons, lobby.get('hostName', '')])