Update 0BDFDB.plugin.js

This commit is contained in:
Mirco Wittrien 2024-11-06 13:22:08 +01:00 committed by GitHub
parent d1fd4eac66
commit 1f6ee6fecc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* @name BDFDB
* @author DevilBro
* @authorId 278543574059057154
* @version 3.8.3
* @version 3.8.4
* @description Required Library for DevilBro's Plugins
* @invite Jx3TjNS
* @donate https://www.paypal.me/MircoWittrien
@ -2544,7 +2544,7 @@ module.exports = (_ => {
});
}
};
LibraryModules.LanguageStore = BDFDB.ModuleUtils.find(m => m.Messages && m.Messages.IMAGE && m) || BDFDB.ModuleUtils.find(m => m[InternalData.LanguageStringHashes.DISCORD] && m, {all: true, defaultExport: false}).find(n => n && n.exports && n.exports[InternalData.LanguageStringHashes.DISCORD]).exports;
LibraryModules.LanguageStore = BDFDB.ModuleUtils.find(m => m.Messages && m.Messages.IMAGE && m) || (BDFDB.ModuleUtils.find(m => m[InternalData.LanguageStringHashes.DISCORD] && m, {all: true, defaultExport: false}).find(n => n && n.exports && n.exports[InternalData.LanguageStringHashes.DISCORD]) || {}).exports;
LibraryModules.React = BDFDB.ModuleUtils.findByProperties("createElement", "cloneElement");
LibraryModules.ReactDOM = BDFDB.ModuleUtils.findByProperties("render", "findDOMNode");
Internal.LibraryModules = new Proxy(LibraryModules, {