mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-08-08 23:35:26 +02:00

Fix tab completion for /plot grant add/check <name> commands Fixed an issue where player name tab completion was not working correctly for /plot grant add <name> and /plot grant check <name> commands. Previously, the tab completion logic would only attempt to complete player names after all arguments were processed, making it impossible to get player suggestions when typing the second argument. Now the completion properly handles: - /plot grant <TAB> → shows "add", "check" subcommands - /plot grant add <TAB> → shows player list - /plot grant check <TAB> → shows player list Fixes #4382