This commit is contained in:
Mirco Wittrien 2019-10-20 21:11:35 +02:00
parent 88c17c98c3
commit 279b759321
2 changed files with 3 additions and 3 deletions

View File

@ -7250,7 +7250,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, BDv2Api: BDFDB && BDFDB.
BDFDB.getOwnerInstance = (config) => {return BDFDB.ReactUtils.getOwner(config.node || config.instance, config);};
BDFDB.getReactValue = BDFDB.ReactUtils.getValue;
BDFDB.WebModules = BDFDB.ModuleUtils;
BDFDB.WebModules = Object.assign({}, BDFDB.ModuleUtils);
BDFDB.WebModules.patch = (module, modulefunctions, plugin, patchfunctions) => {return BDFDB.ModuleUtils.patch(plugin, module, modulefunctions, patchfunctions)};
BDFDB.WebModules.unpatchall = BDFDB.ModuleUtils.unpatch;
@ -7278,7 +7278,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins || {}, BDv2Api: BDFDB && BDFDB.
BDFDB.getTheme = BDFDB.BdUtils.getTheme;
BDFDB.isRestartNoMoreEnabled = BDFDB.BdUtils.isAutoLoadEnabled;
BDFDB.React = BDFDB.ReactUtils;
BDFDB.React = Object.assign({}, BDFDB.ReactUtils);
BDFDB.languages = BDFDB.LanguageUtils.languages;
BDFDB.getDiscordLanguage = BDFDB.LanguageUtils.getLanguage;

File diff suppressed because one or more lines are too long