3 box limit, not 4

This commit is contained in:
2024-03-26 13:25:21 -05:00
parent a577ecd3e4
commit feadb52cb9
@@ -526,7 +526,7 @@ public enum InterestManager implements Runnable {
if (origin == null)
return;
int currentConnections = 0;
int currentConnections = 1;
for(PlayerCharacter pc : SessionManager.getAllActivePlayerCharacters()){
if(pc.isActive() && pc.isEnteredWorld() && pc.getClientConnection().machineID.equals(player.getClientConnection().machineID)){
currentConnections++;