Commit 54faab8f authored by Jaida Wu's avatar Jaida Wu
Browse files

Add restart command


Signed-off-by: default avatarJaida Wu <mlgmxyysd@meowcat.org>
parent 00a746be
package emu.grasscutter.command.commands;
import emu.grasscutter.command.Command;
import emu.grasscutter.command.CommandHandler;
import emu.grasscutter.game.GenshinPlayer;
import java.util.List;
@Command(label = "restart", usage = "restart - Restarts the current session")
public class Restart implements CommandHandler {
@Override
public void onCommand(GenshinPlayer sender, List<String> args) {
sender.getSession().close();
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment