From c671e5b416694523b06399dc75991abc7ab25221 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Fri, 28 May 2021 13:40:11 +0200 Subject: [PATCH] staff --- Plugins/EditUsers/EditUsers.plugin.js | 10 +++++----- Plugins/StaffTag/StaffTag.plugin.js | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Plugins/EditUsers/EditUsers.plugin.js b/Plugins/EditUsers/EditUsers.plugin.js index 44c04662d6..3ef47d028f 100644 --- a/Plugins/EditUsers/EditUsers.plugin.js +++ b/Plugins/EditUsers/EditUsers.plugin.js @@ -2,7 +2,7 @@ * @name EditUsers * @author DevilBro * @authorId 278543574059057154 - * @version 4.2.3 + * @version 4.2.4 * @description Allows you to locally edit Users * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,12 @@ module.exports = (_ => { "info": { "name": "EditUsers", "author": "DevilBro", - "version": "4.2.3", + "version": "4.2.4", "description": "Allows you to locally edit Users" }, "changeLog": { "improved": { - "New User Popout": "Fixed for the new User Popout, which will be released soon-ish" + "New User Popout": "Fixed for the new User Popout, which will be released soon-ish, again and again and again, stop changing Stuff Discord" } } }; @@ -445,7 +445,7 @@ module.exports = (_ => { change = this.settings.places.userPopout; guildId = BDFDB.LibraryModules.LastGuildStore.getGuildId(); changeBackground = true; - tagClass = BDFDB.disCN.bottagnametag; + tagClass = BDFDB.disCN.userpopoutheaderbottag + BDFDB.disCN.bottagnametag; break; case BDFDB.disCN.userprofilenametag: change = this.settings.places.userProfile; @@ -500,7 +500,7 @@ module.exports = (_ => { this.changeUserColor(children[index], e.instance.props.user.id, {changeBackground: true}); if (!BDFDB.ArrayUtils.is(children[index].props.children)) children[index].props.children = [children[index].props.children].flat(10); this.injectBadge(children[index].props.children, e.instance.props.user.id, BDFDB.LibraryModules.LastGuildStore.getGuildId(), 2, { - tagClass: BDFDB.disCN.bottagnametag, + tagClass: BDFDB.disCNS.userpopoutheaderbottag + BDFDB.disCN.bottagnametag, inverted: typeof e.instance.getMode == "function" && e.instance.getMode() !== "Normal" }); } diff --git a/Plugins/StaffTag/StaffTag.plugin.js b/Plugins/StaffTag/StaffTag.plugin.js index da915cb0f0..52ce8bc89e 100644 --- a/Plugins/StaffTag/StaffTag.plugin.js +++ b/Plugins/StaffTag/StaffTag.plugin.js @@ -2,7 +2,7 @@ * @name StaffTag * @author DevilBro * @authorId 278543574059057154 - * @version 1.4.2 + * @version 1.4.3 * @description Adds a Crown/Tag to Server Owners (or Admins/Management) * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -17,12 +17,12 @@ module.exports = (_ => { "info": { "name": "StaffTag", "author": "DevilBro", - "version": "1.4.2", + "version": "1.4.3", "description": "Adds a Crown/Tag to Server Owners (or Admins/Management)" }, "changeLog": { "improved": { - "New User Popout": "Fixed for the new User Popout, which will be released soon-ish" + "New User Popout": "Fixed for the new User Popout, which will be released soon-ish, again and again and again, stop changing Stuff Discord" } } }; @@ -268,7 +268,7 @@ module.exports = (_ => { switch (e.instance.props.className) { case BDFDB.disCN.userpopoutheadertagnonickname: inject = this.settings.tagPlaces.userPopout; - tagClass = BDFDB.disCN.bottagnametag; + tagClass = BDFDB.disCNS.userpopoutheaderbottag + BDFDB.disCN.bottagnametag; break; case BDFDB.disCN.userprofilenametag: inject = this.settings.tagPlaces.userProfile; @@ -292,7 +292,7 @@ module.exports = (_ => { if (index > -1) { if (!BDFDB.ArrayUtils.is(children[index].props.children)) children[index].props.children = [children[index].props.children].flat(10); this.injectStaffTag(children[index].props.children, e.instance.props.user, userType, 2, { - tagClass: BDFDB.disCN.bottagnametag, + tagClass: BDFDB.disCNS.userpopoutheaderbottag + BDFDB.disCN.bottagnametag, inverted: typeof e.instance.getMode == "function" && e.instance.getMode() !== "Normal" }); }