Fixes some minor warnings and spacing

This commit is contained in:
2022-05-29 19:30:42 +02:00
parent 5e7229ce35
commit 91e0f92734
5 changed files with 22 additions and 22 deletions

View File

@@ -21,9 +21,9 @@ public class StargateCommand extends JavaPlugin {
RegisteredServiceProvider<StargateAPI> stargateProvider = servicesManager.getRegistration(StargateAPI.class);
if (stargateProvider != null) {
StargateAPI stargateAPI = stargateProvider.getProvider();
//Register commands
PluginCommand stargateCommand = this.getCommand("stargatecommand");
PluginCommand stargateCommand = this.getCommand("stargateCommand");
if (stargateCommand != null) {
stargateCommand.setExecutor(new CommandStarGateCommand(stargateAPI));
stargateCommand.setTabCompleter(new StargateCommandTabCompleter());
@@ -38,5 +38,5 @@ public class StargateCommand extends JavaPlugin {
public void onDisable() {
//Currently, nothing needs to be disabled
}
}