diff options
author | md_5 <git@md-5.net> | 2018-07-18 17:11:34 +1000 |
---|---|---|
committer | md_5 <git@md-5.net> | 2018-07-18 17:11:34 +1000 |
commit | 0bfac352ece5fd5bca7b8476eb233579a0772fab (patch) | |
tree | e0a234876405f1c54f8d6d70b617df8149a254e7 | |
parent | ccdcd4ddbf362b757370a3ec22f3b5cf23878164 (diff) | |
download | bukkit-0bfac352ece5fd5bca7b8476eb233579a0772fab.tar bukkit-0bfac352ece5fd5bca7b8476eb233579a0772fab.tar.gz bukkit-0bfac352ece5fd5bca7b8476eb233579a0772fab.tar.lz bukkit-0bfac352ece5fd5bca7b8476eb233579a0772fab.tar.xz bukkit-0bfac352ece5fd5bca7b8476eb233579a0772fab.zip |
SPIGOT-4040: Further increase team related limits
-rw-r--r-- | src/main/java/org/bukkit/scoreboard/Team.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/bukkit/scoreboard/Team.java b/src/main/java/org/bukkit/scoreboard/Team.java index c641bc4f..ab71f3c3 100644 --- a/src/main/java/org/bukkit/scoreboard/Team.java +++ b/src/main/java/org/bukkit/scoreboard/Team.java @@ -33,7 +33,7 @@ public interface Team { * Sets the name displayed to entries for this team * * @param displayName New display name - * @throws IllegalArgumentException if displayName is longer than 64 + * @throws IllegalArgumentException if displayName is longer than 128 * characters. * @throws IllegalStateException if this team has been unregistered */ @@ -52,7 +52,7 @@ public interface Team { * * @param prefix New prefix * @throws IllegalArgumentException if prefix is null - * @throws IllegalArgumentException if prefix is longer than 32 + * @throws IllegalArgumentException if prefix is longer than 64 * characters * @throws IllegalStateException if this team has been unregistered */ @@ -71,7 +71,7 @@ public interface Team { * * @param suffix the new suffix for this team. * @throws IllegalArgumentException if suffix is null - * @throws IllegalArgumentException if suffix is longer than 32 + * @throws IllegalArgumentException if suffix is longer than 64 * characters * @throws IllegalStateException if this team has been unregistered */ |