Add shutdown alias to StopCommand

This commit is contained in:
Luke H-W 2022-10-04 01:33:01 +10:30 committed by GitHub
parent 960318651c
commit f6ce7e349d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ import java.util.List;
import static emu.grasscutter.utils.Language.translate;
@Command(label = "stop", permission = "server.stop", targetRequirement = Command.TargetRequirement.NONE)
@Command(label = "stop", aliases = {"shutdown"}, permission = "server.stop", targetRequirement = Command.TargetRequirement.NONE)
public final class StopCommand implements CommandHandler {
@Override