mirror of
https://github.com/cnaude/PurpleIRC-spigot.git
synced 2025-02-03 05:01:25 +01:00
Additional tab-completion debugging.
This commit is contained in:
parent
f963e3aee1
commit
12104ddd36
@ -76,11 +76,16 @@ public class PurpleTabCompleter implements TabCompleter {
|
||||
}
|
||||
}
|
||||
if (ircBot.botLinkingEnabled) {
|
||||
plugin.logDebug("T2");
|
||||
for (String remoteBot : ircBot.remotePlayers.keySet()) {
|
||||
plugin.logDebug("T3: " + remoteBot);
|
||||
for (String playerName : ircBot.remotePlayers.get(remoteBot)) {
|
||||
plugin.logDebug("T4: " + playerName);
|
||||
list.add(playerName);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
plugin.logDebug("T1");
|
||||
}
|
||||
}
|
||||
for (Player player : plugin.getServer().getOnlinePlayers()) {
|
||||
|
Loading…
Reference in New Issue
Block a user