From: Scott Worley Date: Wed, 1 Aug 2012 05:15:21 +0000 (-0700) Subject: Make /nick reminder a little more visible X-Git-Url: http://git.scottworley.com/reliable-chat/commitdiff_plain/c3983543f7453a81573a496168049edb38a5d223 Make /nick reminder a little more visible --- diff --git a/webclient/rc.html b/webclient/rc.html index a896281..591bd21 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -141,14 +141,14 @@ message = "<" + rcnick() + "> " + input; } + // Say the message + var d = rcaddmessagetohistory(message); + rcsend(d, message); + // Remind people to set their nick if (rcnick() == 'anonymous') { rcaddmessagetohistory("-!- Set your nick with /nick"); } - - // Say the message - var d = rcaddmessagetohistory(message); - rcsend(d, message); } } //-->