Remove dead client code

This commit is contained in:
calzoneman 2016-05-21 16:24:41 -07:00
parent 7e623daebb
commit 0922ce8e66
4 changed files with 0 additions and 56 deletions

View file

@ -642,7 +642,6 @@ function showUserOptions() {
$("#us-no-emotes").prop("checked", USEROPTS.no_emotes);
$("#us-modflair").prop("checked", USEROPTS.modhat);
$("#us-joinmessage").prop("checked", USEROPTS.joinmessage);
$("#us-shadowchat").prop("checked", USEROPTS.show_shadowchat);
formatScriptAccessPrefs();
@ -677,7 +676,6 @@ function saveUserOptions() {
if (CLIENT.rank >= 2) {
USEROPTS.modhat = $("#us-modflair").prop("checked");
USEROPTS.joinmessage = $("#us-joinmessage").prop("checked");
USEROPTS.show_shadowchat = $("#us-shadowchat").prop("checked");
}