Skip to content

Commit a50f745

Browse files
committed
fix: #78
1 parent ef9bd55 commit a50f745

File tree

1 file changed

+1
-1
lines changed
  • common/src/main/java/dev/tonimatas/packetfixer/common

1 file changed

+1
-1
lines changed

common/src/main/java/dev/tonimatas/packetfixer/common/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public static int getVarLong() {
9494

9595
public static int getStringSize() {
9696
if (properties == null) runProperties();
97-
return getUnlimitedPacketSize() ? Integer.MAX_VALUE : Integer.parseInt(properties.getProperty("stringSize"));
97+
return getUnlimitedPacketSize() ? 327670000 : Integer.parseInt(properties.getProperty("stringSize"));
9898
}
9999

100100
public static int getChunkPacketData() {

0 commit comments

Comments
 (0)