SPIGOT-4112: scoreboard display names are not nullable
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -42,7 +42,7 @@ final class CraftObjective extends CraftScoreboardComponent implements Objective
|
||||
Validate.isTrue(displayName.length() <= 128, "Display name '" + displayName + "' is longer than the limit of 128 characters");
|
||||
CraftScoreboard scoreboard = checkState();
|
||||
|
||||
objective.setDisplayName(CraftChatMessage.fromStringOrNull(displayName));
|
||||
objective.setDisplayName(CraftChatMessage.fromString(displayName)[0]); // SPIGOT-4112: not nullable
|
||||
}
|
||||
|
||||
public String getCriteria() throws IllegalStateException {
|
||||
|
||||
@@ -41,7 +41,7 @@ final class CraftTeam extends CraftScoreboardComponent implements Team {
|
||||
Validate.isTrue(displayName.length() <= 128, "Display name '" + displayName + "' is longer than the limit of 128 characters");
|
||||
CraftScoreboard scoreboard = checkState();
|
||||
|
||||
team.setDisplayName(CraftChatMessage.fromStringOrNull(displayName));
|
||||
team.setDisplayName(CraftChatMessage.fromString(displayName)[0]); // SPIGOT-4112: not nullable
|
||||
}
|
||||
|
||||
public String getPrefix() throws IllegalStateException {
|
||||
|
||||
Reference in New Issue
Block a user