aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/usrbg/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/usrbg/index.tsx')
-rw-r--r--src/plugins/usrbg/index.tsx20
1 files changed, 15 insertions, 5 deletions
diff --git a/src/plugins/usrbg/index.tsx b/src/plugins/usrbg/index.tsx
index c898d92..09ecd57 100644
--- a/src/plugins/usrbg/index.tsx
+++ b/src/plugins/usrbg/index.tsx
@@ -46,11 +46,17 @@ export default definePlugin({
settings,
patches: [
{
- find: ".bannerSrc,",
- replacement: {
- match: /(\i)\.bannerSrc,/,
- replace: "$self.useBannerHook($1),"
- }
+ find: ".NITRO_BANNER,",
+ replacement: [
+ {
+ match: /(\i)\.premiumType/,
+ replace: "$self.premiumHook($1)||$&"
+ },
+ {
+ match: /(\i)\.bannerSrc,/,
+ replace: "$self.useBannerHook($1),"
+ }
+ ]
}
],
@@ -65,6 +71,10 @@ export default definePlugin({
if (data[user.id]) return data[user.id];
},
+ premiumHook({ userId }: any) {
+ if (data[userId]) return 2;
+ },
+
async start() {
enableStyle(style);