Modify the about command

This commit is contained in:
2023-12-29 12:43:58 +01:00
parent f37a196dd9
commit f657816533
5 changed files with 76 additions and 6 deletions

View File

@@ -460,7 +460,7 @@ public class Stargate extends JavaPlugin {
private void registerCommands() {
PluginCommand stargateCommand = this.getCommand("stargate");
if (stargateCommand != null) {
stargateCommand.setExecutor(new CommandStarGate());
stargateCommand.setExecutor(new CommandStarGate(this));
stargateCommand.setTabCompleter(new StarGateTabCompleter());
}
}