X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/0248a518996a6bf532cd4d91e8bcab8dde60cee1..c3983543f7453a81573a496168049edb38a5d223:/webclient/rc.html 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); } } //-->