From: Scott Worley Date: Fri, 3 Aug 2012 07:06:44 +0000 (-0700) Subject: Leave out the anonymous nick reminders for now X-Git-Url: http://git.scottworley.com/reliable-chat/commitdiff_plain/591b51678a352ec65de07c3f4dc79f63156ca605 Leave out the anonymous nick reminders for now Status messages complicate some upcoming history representation rework. Also, theer's a plan for something better than this simple nagging. --- diff --git a/webclient/rc.html b/webclient/rc.html index 5d09dba..632956b 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -179,9 +179,6 @@ status_indicator.setAttribute("class", "sad"); document.getElementById("status").appendChild(status_indicator); } - if (rcnick() == 'anonymous') { - rcaddmessagetohistory("-!- Set your nick with /nick"); - } } function rcsend(d, message) { @@ -228,11 +225,6 @@ // 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"); - } } } //-->