diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/ExportCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/ExportCommand.java index 8d92713..8514852 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/ExportCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/ExportCommand.java @@ -60,7 +60,7 @@ public final class ExportCommand extends Command { FileUtil.saveJsonFile(file, endJson); - Seppuku.INSTANCE.logChat("\247c" + "Exported config " + configName + ".json into the Seppuku directory."); + Seppuku.INSTANCE.logChat("\247c" + "Exported config " + configName + ".json into the Seppuku directory"); } } diff --git a/src/main/java/me/rigamortis/seppuku/impl/command/LoadCommand.java b/src/main/java/me/rigamortis/seppuku/impl/command/LoadCommand.java index 0fd7720..081d52e 100644 --- a/src/main/java/me/rigamortis/seppuku/impl/command/LoadCommand.java +++ b/src/main/java/me/rigamortis/seppuku/impl/command/LoadCommand.java @@ -18,7 +18,7 @@ import java.net.URL; public final class LoadCommand extends Command { public LoadCommand() { - super("Load", new String[]{"Lode"}, "Load a config from your profile on Seppuku's website.", "Load "); + super("Load", new String[]{"Lode"}, "Load a config from your profile on Seppuku's website", "Load "); } @Override @@ -51,7 +51,7 @@ public final class LoadCommand extends Command { } catch (Exception e) { e.printStackTrace(); - Seppuku.INSTANCE.logChat("\247c" + "Error loading config from server."); + Seppuku.INSTANCE.logChat("\247c" + "Error loading config from server"); } if (configJson != null) { @@ -81,7 +81,7 @@ public final class LoadCommand extends Command { Seppuku.INSTANCE.unloadSimple(); Seppuku.INSTANCE.init(); - Seppuku.INSTANCE.logChat("\247c" + "Loaded config from server."); + Seppuku.INSTANCE.logChat("\247c" + "Loaded config from server"); } }