3 box limit

This commit is contained in:
2024-03-26 13:33:18 -05:00
parent feadb52cb9
commit a6377cfe6e
@@ -526,7 +526,7 @@ public enum InterestManager implements Runnable {
if (origin == null)
return;
int currentConnections = 1;
int currentConnections = 0;
for(PlayerCharacter pc : SessionManager.getAllActivePlayerCharacters()){
if(pc.isActive() && pc.isEnteredWorld() && pc.getClientConnection().machineID.equals(player.getClientConnection().machineID)){
currentConnections++;
@@ -534,7 +534,7 @@ public enum InterestManager implements Runnable {
}
try {
if (currentConnections >= 3) {
if (currentConnections >= 2) {
Session s = SessionManager.getSession(player);
if (s.getAccount() != null) {
CharSelectScreenMsg cssm = new CharSelectScreenMsg(s, false);