X-Git-Url: http://git.scottworley.com/reliable-chat/blobdiff_plain/112df9d11e5a30edba4bdcb065d68e182ef1d694..cf44a97649f42952e85dca82a91f18fc4e14c1e9:/webclient/rc.html diff --git a/webclient/rc.html b/webclient/rc.html index d06f515..7f3e8d1 100644 --- a/webclient/rc.html +++ b/webclient/rc.html @@ -443,7 +443,7 @@ function rcinput(input) { var message; - var re = /^\/(\S+)(\s(.*))?/ + var re = /^\/(\S+)(\s(.*))?/; var match = re.exec(input); if (match) { var command = match[1]; @@ -451,6 +451,10 @@ if (command == 'me') { message = "* " + rcnick() + " " + rest; } else if (command == 'nick') { + if (rcnick() == rest) { + rcaddmessagetoUI({'Text': '-!- Your nick is already ' + rcnick(), 'ServerTimes': {}}); + return; + } message = "*** " + rcnick() + " is now known as " + rest; rcsetnick(rest); } else { @@ -468,7 +472,9 @@ function rckeydown(event) { if (event.keyCode == 13) { - rcinput(document.input.say.value); + if (document.input.say.value) { + rcinput(document.input.say.value); + } document.input.say.value = ""; return false; }