Punctuation for new commands
This commit is contained in:
parent
6534eb32c5
commit
e132ed7365
|
@ -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");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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 <pin>");
|
||||
super("Load", new String[]{"Lode"}, "Load a config from your profile on Seppuku's website", "Load <pin>");
|
||||
}
|
||||
|
||||
@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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue