Skip to content
This repository was archived by the owner on Jun 7, 2022. It is now read-only.

Commit b48c6a1

Browse files
author
Dytanic
committed
set i >= 200 check to i >= 4999
1 parent 7fd5012 commit b48c6a1

File tree

1 file changed

+1
-1
lines changed
  • cloudnet-lib/src/main/java/de/dytanic/cloudnet/lib/network/protocol/packet

1 file changed

+1
-1
lines changed

cloudnet-lib/src/main/java/de/dytanic/cloudnet/lib/network/protocol/packet/PacketManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public void run()
9393
{
9494
}
9595

96-
if (i >= 200) synchronizedHandlers.get(uniqueId).setValue(new Result(uniqueId, new Document()));
96+
if (i >= 4999) synchronizedHandlers.get(uniqueId).setValue(new Result(uniqueId, new Document()));
9797

9898
Value<Result> values = synchronizedHandlers.get(uniqueId);
9999
synchronizedHandlers.remove(uniqueId);

0 commit comments

Comments
 (0)