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

Commit

Permalink
Update znc command help message.
Browse files Browse the repository at this point in the history
  • Loading branch information
cnaude committed Feb 25, 2016
1 parent fa0adc9 commit d3e23a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/cnaude/purpleirc/Commands/Znc.java
Expand Up @@ -30,7 +30,7 @@ public class Znc implements IRCCommandInterface {

private final PurpleIRC plugin;
private final String usage = "([bot]) [command] ([arguments])";
private final String desc = "Send a private message to an IRC user.";
private final String desc = "Send commands to the ZNC bouncer.";
private final String name = "znc";
private final String fullUsage = ChatColor.WHITE + "Usage: " + ChatColor.GOLD + "/irc " + name + " " + usage;

Expand All @@ -50,7 +50,7 @@ public Znc(PurpleIRC plugin) {
@Override
public void dispatch(CommandSender sender, String[] args) {
if (args.length >= 2) {
plugin.logDebug("Dispatching msg command...");
plugin.logDebug("Dispatching znc command...");
int msgIdx = 1;
java.util.List<PurpleBot> myBots = new ArrayList<>();
if (plugin.ircBots.containsKey(args[1])) {
Expand Down

0 comments on commit d3e23a6

Please sign in to comment.