Punctuation for new commands

This commit is contained in:
noil 2023-05-17 01:44:24 -04:00
parent 6534eb32c5
commit e132ed7365
2 changed files with 4 additions and 4 deletions

View File

@ -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");
}
}

View File

@ -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");
}
}