tab completion

This commit is contained in:
dfsek
2021-03-08 03:17:22 -07:00
parent 22d6fdf293
commit 52c56af02c
4 changed files with 36 additions and 9 deletions

View File

@@ -31,6 +31,7 @@ import com.dfsek.terra.bukkit.listeners.SpigotListener;
import com.dfsek.terra.bukkit.listeners.TerraListener;
import com.dfsek.terra.bukkit.util.PaperUtil;
import com.dfsek.terra.bukkit.world.BukkitBiome;
import com.dfsek.terra.commands.StructureCommand;
import com.dfsek.terra.commands.profiler.ProfileCommand;
import com.dfsek.terra.config.GenericLoaders;
import com.dfsek.terra.config.PluginConfig;
@@ -170,6 +171,7 @@ public class TerraBukkitPlugin extends JavaPlugin implements TerraPlugin {
CommandManager manager = new TerraCommandManager(this);
manager.register("profile", ProfileCommand.class);
manager.register("structure", StructureCommand.class);
BukkitCommandAdapter command = new BukkitCommandAdapter(manager);