SteamWar/SpigotCore
Archiviert
13
0

Removing Message reflections

Dieser Commit ist enthalten in:
yoyosource 2021-06-05 17:07:59 +02:00
Ursprung 5987f71f72
Commit eb41edb2bf

Datei anzeigen

@ -224,7 +224,7 @@ public abstract class SWCommand {
st.append("§7..."); st.append("§7...");
} }
if (!subCommand.description.isEmpty()) { if (!subCommand.description.isEmpty()) {
st.append("§8 - §7").append(message.parse(subCommand.description, sender)); st.append("§8 - §7").append(message != null ? message.parse(subCommand.description, sender) : subCommand.description);
} }
help.add(st.toString()); help.add(st.toString());
}); });