mirror of
https://github.com/BentoBoxWorld/AcidIsland.git
synced 2024-11-25 03:55:33 +01:00
Removed debug.
This commit is contained in:
parent
d5dd7475a7
commit
6c6dc4afeb
@ -810,5 +810,10 @@ public class AISettings implements ISettings<AISettings>, WorldSettings {
|
||||
this.chestItems = chestItems;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPermissionPrefix() {
|
||||
return "acidisland";
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -34,8 +34,6 @@ public class AcidIsland extends Addon {
|
||||
|
||||
// Create worlds
|
||||
aiw = new AcidIslandWorld(this);
|
||||
// TODO Register settings
|
||||
//getBSkyBlock().getSettings().register(settings);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -2,8 +2,6 @@ package bskyblock.addon.acidisland.commands;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import bskyblock.addon.acidisland.AcidIsland;
|
||||
import us.tastybento.bskyblock.api.addons.Addon;
|
||||
@ -22,7 +20,6 @@ import us.tastybento.bskyblock.commands.island.IslandSetnameCommand;
|
||||
import us.tastybento.bskyblock.commands.island.IslandSettingsCommand;
|
||||
import us.tastybento.bskyblock.commands.island.IslandUnbanCommand;
|
||||
import us.tastybento.bskyblock.commands.island.teams.IslandTeamCommand;
|
||||
import us.tastybento.bskyblock.util.Util;
|
||||
|
||||
public class AiCommand extends CompositeCommand {
|
||||
|
||||
@ -79,12 +76,4 @@ public class AiCommand extends CompositeCommand {
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public Optional<List<String>> tabComplete(User user, String alias, List<String> args) {
|
||||
List<String> options = getPlugin().getIWM().getOverWorldNames().stream().collect(Collectors.toList());
|
||||
String lastArg = !args.isEmpty() ? args.get(args.size()-1) : "";
|
||||
return Optional.of(Util.tabLimit(options, lastArg));
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user