Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BungeeCord-Patches/0056-Additional-DoS-mitigations.patch
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ index 5186a6a8..3224b0d2 100644
+ // Accommodate the rare (but likely malicious) use of UTF-8 usernames, since it is technically
+ // legal on the protocol level.
+ if (protocolVersion >= ProtocolConstants.MINECRAFT_1_19) return -1;
+ return 1 + (16 * 4);
+ return 1 + (16 * 3);
+ }
+ // Waterfall end
}
Expand Down