Add nickserv command

This commit is contained in:
cnaude 2017-06-17 12:33:35 -07:00
parent 195deaf28c
commit 44315e5d08

View File

@ -65,7 +65,7 @@ public class Nickserv implements IRCCommandInterface {
msg = msg + " " + args[i]; msg = msg + " " + args[i];
} }
plugin.logDebug("Sending nickserv message to the server: " + msg.substring(1)); plugin.logDebug("Sending nickserv message to the server: " + msg.substring(1));
ircBot.asyncRawlineNow(msg.substring(1)); ircBot.asyncRawlineNow("nickserv " + msg.substring(1));
} }
} else { } else {
sender.sendMessage(fullUsage); sender.sendMessage(fullUsage);