diff --git a/Library/0BDFDB.plugin.js b/Library/0BDFDB.plugin.js index 91e49b11a5..6aa2622440 100644 --- a/Library/0BDFDB.plugin.js +++ b/Library/0BDFDB.plugin.js @@ -2,7 +2,7 @@ * @name BDFDB * @author DevilBro * @authorId 278543574059057154 - * @version 2.3.6 + * @version 2.3.7 * @description Required Library for DevilBro's Plugins * @invite Jx3TjNS * @donate https://www.paypal.me/MircoWittrien @@ -19,7 +19,7 @@ module.exports = (_ => { "info": { "name": "BDFDB", "author": "DevilBro", - "version": "2.3.6", + "version": "2.3.7", "description": "Required Library for DevilBro's Plugins" }, "rawUrl": "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js" @@ -1922,7 +1922,7 @@ module.exports = (_ => { BDFDB.TooltipUtils = {}; BDFDB.TooltipUtils.create = function (anker, text, config = {}) { if (!text && !config.guild) return null; - const itemLayerContainer = document.querySelector(BDFDB.dotCN.app + " ~ " + BDFDB.dotCNC.itemlayercontainer + BDFDB.dotCN.itemlayercontainer); + const itemLayerContainer = document.querySelector(BDFDB.dotCN.app + " ~ " + BDFDB.dotCN.itemlayercontainer) || document.querySelector(BDFDB.dotCN.itemlayercontainer); if (!itemLayerContainer || !Node.prototype.isPrototypeOf(anker) || !document.contains(anker)) return null; const id = BDFDB.NumberUtils.generateId(Tooltips); const itemLayer = BDFDB.DOMUtils.create(`
`);