lib
This commit is contained in:
parent
3b65be5899
commit
f35493a80d
File diff suppressed because one or more lines are too long
|
@ -3729,6 +3729,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
|
||||||
nameContainerNameContainer: 'container-2ax-kl',
|
nameContainerNameContainer: 'container-2ax-kl',
|
||||||
gameLibrary: 'gameLibrary-TTDw4Y',
|
gameLibrary: 'gameLibrary-TTDw4Y',
|
||||||
guildChannels: 'container-PNkimc',
|
guildChannels: 'container-PNkimc',
|
||||||
|
guildBadgeWrapper: 'guild-badge-wrapper-deprecated',
|
||||||
highlight: 'highlight',
|
highlight: 'highlight',
|
||||||
hoverCardButton: 'button-2CgfFz',
|
hoverCardButton: 'button-2CgfFz',
|
||||||
loginScreen: 'wrapper-3Q5DdO',
|
loginScreen: 'wrapper-3Q5DdO',
|
||||||
|
@ -3820,7 +3821,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
|
||||||
DiscordClassModules.Game = BDFDB.WebModules.findByProperties('game', 'gameName');
|
DiscordClassModules.Game = BDFDB.WebModules.findByProperties('game', 'gameName');
|
||||||
DiscordClassModules.GifFavoriteButton = BDFDB.WebModules.findByProperties('gifFavoriteButton', 'showPulse');
|
DiscordClassModules.GifFavoriteButton = BDFDB.WebModules.findByProperties('gifFavoriteButton', 'showPulse');
|
||||||
DiscordClassModules.GiftInventory = BDFDB.WebModules.find(module => typeof module['root'] == 'string' && typeof module['body'] == 'string' && (Object.keys(module).length == 2 || Object.keys(module).length == 3));
|
DiscordClassModules.GiftInventory = BDFDB.WebModules.find(module => typeof module['root'] == 'string' && typeof module['body'] == 'string' && (Object.keys(module).length == 2 || Object.keys(module).length == 3));
|
||||||
DiscordClassModules.Guild = BDFDB.WebModules.findByProperties('wrapper', 'badgeWrapper', 'svg');
|
DiscordClassModules.Guild = BDFDB.WebModules.findByProperties('wrapper', 'lowerBadge', 'svg');
|
||||||
DiscordClassModules.GuildChannels = BDFDB.WebModules.findByProperties('positionedContainer', 'unreadBar');
|
DiscordClassModules.GuildChannels = BDFDB.WebModules.findByProperties('positionedContainer', 'unreadBar');
|
||||||
DiscordClassModules.GuildDm = BDFDB.WebModules.find(module => typeof module['pill'] == 'string' && Object.keys(module).length == 1);
|
DiscordClassModules.GuildDm = BDFDB.WebModules.find(module => typeof module['pill'] == 'string' && Object.keys(module).length == 1);
|
||||||
DiscordClassModules.GuildEdges = BDFDB.WebModules.findByProperties('wrapper', 'edge', 'autoPointerEvents')
|
DiscordClassModules.GuildEdges = BDFDB.WebModules.findByProperties('wrapper', 'edge', 'autoPointerEvents')
|
||||||
|
@ -4328,7 +4329,7 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
|
||||||
guildbadgeiconbadge2: ['GuildsItems', 'iconBadge'],
|
guildbadgeiconbadge2: ['GuildsItems', 'iconBadge'],
|
||||||
guildbadgenumberbadge: ['Badge', 'numberBadge'],
|
guildbadgenumberbadge: ['Badge', 'numberBadge'],
|
||||||
guildbadgetextbadge: ['Badge', 'textBadge'],
|
guildbadgetextbadge: ['Badge', 'textBadge'],
|
||||||
guildbadgewrapper: ['Guild', 'badgeWrapper'],
|
guildbadgewrapper: BDFDB.DiscordClassModules.Guild.badgeWrapper ? ['Guild', 'badgeWrapper'] : ['NotFound', 'guildBadgeWrapper'], // REMOVE
|
||||||
guildbuttoncontainer: ['GuildsItems', 'circleButtonMask'],
|
guildbuttoncontainer: ['GuildsItems', 'circleButtonMask'],
|
||||||
guildbuttoninner: ['GuildsItems', 'circleIconButton'],
|
guildbuttoninner: ['GuildsItems', 'circleIconButton'],
|
||||||
guildbuttonicon: ['GuildsItems', 'circleIcon'],
|
guildbuttonicon: ['GuildsItems', 'circleIcon'],
|
||||||
|
@ -4336,7 +4337,6 @@ var BDFDB = {myPlugins: BDFDB && BDFDB.myPlugins ? BDFDB.myPlugins : {}, BDv2Api
|
||||||
guildbuttonselected: ['GuildsItems', 'selected'],
|
guildbuttonselected: ['GuildsItems', 'selected'],
|
||||||
guildchannels: ['NotFound', 'guildChannels'],
|
guildchannels: ['NotFound', 'guildChannels'],
|
||||||
guildcontainer: ['GuildServer', 'blobContainer'],
|
guildcontainer: ['GuildServer', 'blobContainer'],
|
||||||
guilddragfix: ['Guild', 'dragfix'],
|
|
||||||
guildedge: ['GuildEdges', 'edge'],
|
guildedge: ['GuildEdges', 'edge'],
|
||||||
guildedgemiddle: ['GuildEdges', 'middle'],
|
guildedgemiddle: ['GuildEdges', 'middle'],
|
||||||
guildedgewrapper: ['GuildEdges', 'wrapper'],
|
guildedgewrapper: ['GuildEdges', 'wrapper'],
|
||||||
|
|
Loading…
Reference in New Issue