mirror of
https://github.com/PaperMC/Paper.git
synced 2025-04-12 16:30:54 +08:00
SPIGOT-4112: scoreboard display names are not nullable
This commit is contained in:
parent
d4297cbe2d
commit
155b17305b
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user