Skip to content

Commit

Permalink
🐛 Fix server command (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
17TheWord authored Sep 11, 2024
1 parent 0a988ca commit 603b4e0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package com.github.theword.queqiao.command.subCommand;

import com.github.theword.queqiao.command.SpigotSubCommand;
import com.github.theword.queqiao.tool.command.subCommand.ServerCommandAbstract;
import org.bukkit.command.CommandSender;

import java.util.ArrayList;
import java.util.List;

public class ServerCommand implements SpigotSubCommand {
public class ServerCommand extends ServerCommandAbstract implements SpigotSubCommand {
@Override
public boolean onCommand(CommandSender commandSender, String[] args) {
commandSender.sendMessage("Server commands are not implemented yet.");
Expand Down Expand Up @@ -38,4 +39,4 @@ public String getDescription() {
public String getUsage() {
return "使用:/mcqq client <args>";
}
}
}

0 comments on commit 603b4e0

Please sign in to comment.