1
0
mirror of https://github.com/kami-blue/client synced 2025-01-19 05:20:46 +00:00

Implement save command

Closes #33
This commit is contained in:
zeroeightsix 2018-10-04 18:21:42 +02:00
parent 156177d677
commit b3d2389ed1

View File

@ -0,0 +1,29 @@
package me.zeroeightsix.kami.command.commands;
import me.zeroeightsix.kami.command.Command;
import me.zeroeightsix.kami.command.syntax.SyntaxChunk;
import me.zeroeightsix.kami.setting.SettingsPool;
import java.io.File;
import java.io.IOException;
/**
* Created by 086 on 4/10/2018.
*/
public class SaveCommand extends Command {
public SaveCommand() {
super("save", SyntaxChunk.EMPTY);
setDescription("Saves the current settings to disk");
}
@Override
public void call(String[] args) {
try {
SettingsPool.save(new File("kami.settings"));
Command.sendChatMessage("Configuration saved.");
} catch (IOException e) {
e.printStackTrace();
Command.sendChatMessage("Failed to save! " + e.getMessage());
}
}
}