Skip to content

Commit

Permalink
fix ircnick
Browse files Browse the repository at this point in the history
  • Loading branch information
the-maldridge committed Jun 21, 2014
1 parent eb302bf commit 61dedfb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public void execute(CommandSender sender, String[] args) {
sender.sendMessage(new TextComponent(ChatColor.RED + "The nick " + args[0] + " is already in use."));
return;
}
IRC.out.println(":" + IRC.uids.get(sender) + " NICK " + args[0]);
IRC.out.println(":" + IRC.uids.get(sender) + " NICK " + args[0] + " " + System.currentTimeMillis() / 1000);
}
}

0 comments on commit 61dedfb

Please sign in to comment.