Adds simplified chinese, courtesy of YKDZ

This commit is contained in:
2022-02-15 18:15:22 +01:00
parent 8a5c094ce1
commit 8c334ff5f0
7 changed files with 50 additions and 5 deletions

View File

@ -23,8 +23,9 @@ public class CommandAbout implements CommandExecutor {
commandSender.sendMessage(textColor + "Go to " + highlightColor +
"https://git.knarcraft.net/EpicKnarvik97/Stargate " + textColor + "for the official repository");
String author = Stargate.getStargateConfig().getLanguageLoader().getString("author");
if (!author.isEmpty())
if (!author.isEmpty()) {
commandSender.sendMessage(textColor + "Language created by " + highlightColor + author);
}
return true;
}