Skip to content

Commit

Permalink
SPIGOT-7829: Increase maximum outgoing plugin message size to match V…
Browse files Browse the repository at this point in the history
…anilla intention
  • Loading branch information
md-5 committed Jul 16, 2024
1 parent 5cd1c8c commit 3a3bea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/bukkit/plugin/messaging/Messenger.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface Messenger {
/**
* Represents the largest size that an individual Plugin Message may be.
*/
public static final int MAX_MESSAGE_SIZE = 32766;
public static final int MAX_MESSAGE_SIZE = 1048576;

/**
* Represents the largest size that a Plugin Channel may be.
Expand Down

0 comments on commit 3a3bea5

Please sign in to comment.