update blacklist

This commit is contained in:
Zack Rauen 2018-05-02 22:17:06 -04:00
parent 532b605c35
commit c776f7cee4
3 changed files with 38 additions and 12 deletions

View File

@ -502,7 +502,6 @@
"HAHAHA",
"Hai!",
"HALLO",
"Halp",
"Handsome",
"HANK",
"Hannibal",
@ -522,7 +521,6 @@
"HEEHAW",
"Heels",
"HELGA",
"Hello",
"HELLO",
"HELLO!",
"HELP",
@ -1022,7 +1020,6 @@
"Sense",
"Serena",
"Serious",
"Seriously",
"Serperior",
"Servine",
"SEXY",
@ -1316,7 +1313,6 @@
"Yosh",
"You!",
"YOUTUBE",
"YouTube",
"yukon",
"YUMMY",
"Yup!",
@ -1333,6 +1329,33 @@
"Zombie",
"ZOMBIE",
"Zorua",
"Zyra"
"Zyra",
"Birb",
"Yolo",
"Nice!",
"Damnit",
"Deadass",
"Wanker",
"rekt",
"Unacceptable",
"Poked",
"ghillie",
"Kisses",
"Oooh",
"Derp",
"Costanza",
"LULUL",
"Heyo",
"Kian",
"Hello",
"Halp",
"Wdym",
"YouTube",
"Goldblum",
"Butterfly",
"Seriously",
"Ak47",
"AK47",
"userID"
]
}

View File

@ -236,7 +236,7 @@ Core.prototype.init = async function() {
}
utils = new Utils();
utils.getHash();
await utils.getHash();
emoteModule = new EmoteModule();
utils.log("Initializing EmoteModule");
emoteModule.init();
@ -1295,7 +1295,7 @@ function Utils() {
}
Utils.prototype.getTextArea = function () {
return $(".channelTextArea-1HTP3C textarea");
return $(".channelTextArea-1LDbYG textarea");
};
Utils.prototype.insertText = function (textarea, text) {
@ -1316,9 +1316,12 @@ Utils.prototype.jqDefer = function (fnc) {
};
Utils.prototype.getHash = function () {
$.getJSON("https://api.github.com/repos/rauenzi/BetterDiscordApp/commits/master", function (data) {
_hash = data.sha;
bdConfig.hash = _hash;
return new Promise((resolve) => {
$.getJSON("https://api.github.com/repos/rauenzi/BetterDiscordApp/commits/master", function (data) {
_hash = data.sha;
bdConfig.hash = _hash;
resolve(_hash);
});
});
};

4
js/main.min.js vendored

File diff suppressed because one or more lines are too long