Skip to content

Commit 0b45ff6

Browse files
committed
Fixing BukkitCommand
1 parent ac663ba commit 0b45ff6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/me/croabeast/command/BukkitCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* An abstract base class for commands that integrates with Bukkit’s command system.
2525
* <p>
26-
* {@code BukkitCommand} extends the default Bukkit {@code Command} class and implements both
26+
* {@code BukkitCommand} extends the default {@code BukkitCommand} class and implements both
2727
* {@link Command} and {@link DefaultPermissible} to provide a robust framework for creating,
2828
* registering, and unregistering commands at runtime. It supports sub-commands, dynamic permission
2929
* management, custom tab-completion, and error handling. This implementation is particularly designed
@@ -45,7 +45,7 @@
4545
* @see DefaultPermissible
4646
* @see PluginIdentifiableCommand
4747
*/
48-
public abstract class BukkitCommand extends org.bukkit.command.Command implements Command, DefaultPermissible {
48+
public abstract class BukkitCommand extends org.bukkit.command.defaults.BukkitCommand implements Command, DefaultPermissible {
4949

5050
/**
5151
* The unique key associated with this command.

0 commit comments

Comments
 (0)