SPIGOT-4010: Prefix / suffix compatibility should default to empty string

This commit is contained in:
md_5 2018-07-16 09:09:47 +10:00
parent 43eb8f312c
commit 00bba6e86f

View File

@ -15,8 +15,8 @@
}
+
+ // CraftBukkit start
+ private String prefix;
+ private String suffix;
+ private String prefix = "";
+ private String suffix = "";
+
+ public String getPrefix() {
+ return prefix;