fix(NitroBypass): Fix using stickers bypass with Nitro Classic (#196)

This commit is contained in:
Nuckyz 2022-11-08 13:51:09 -03:00 committed by GitHub
parent 4e57ae66f1
commit 3a3a52c493
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,7 +145,11 @@ export default definePlugin({
}, },
get canUseEmotes() { get canUseEmotes() {
return Boolean(UserStore.getCurrentUser().premiumType); return (UserStore.getCurrentUser().premiumType ?? 0) > 0;
},
get canUseSticker() {
return (UserStore.getCurrentUser().premiumType ?? 0) > 1;
}, },
getStickerLink(stickerId: string) { getStickerLink(stickerId: string) {
@ -249,7 +253,7 @@ export default definePlugin({
if (sticker) { if (sticker) {
// when the user has Nitro and the sticker is available, send the sticker normally // when the user has Nitro and the sticker is available, send the sticker normally
if (this.canUseEmotes && sticker.available) { if (this.canUseSticker && sticker.available) {
return { cancel: false }; return { cancel: false };
} }