Skip to content
This repository has been archived by the owner on Jul 27, 2019. It is now read-only.

Commit

Permalink
Additional debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnaude committed May 4, 2016
1 parent 23d8916 commit 04391cb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/cnaude/purpleirc/PurpleTabCompleter.java
Expand Up @@ -76,11 +76,16 @@ public List<String> onTabComplete(CommandSender cs, Command cmnd, String string,
}
}
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()) {
Expand Down

0 comments on commit 04391cb

Please sign in to comment.