Update PurchasedFlags.js

This commit is contained in:
Elysia 2024-01-13 18:50:29 +07:00
parent 65e68a9ded
commit 39b1d33857

View File

@ -20,12 +20,14 @@ class PurchasedFlags extends BitField {}
* * `NITRO_CLASSIC`
* * `NITRO`
* * `GUILD_BOOST`
* * `NITRO_BASIC`
* @type {Object}
*/
PurchasedFlags.FLAGS = {
NITRO_CLASSIC: 1 << 0,
NITRO: 1 << 1,
GUILD_BOOST: 1 << 2,
NITRO_BASIC: 1 << 3,
};
module.exports = PurchasedFlags;