fix overlapping flag set

This commit is contained in:
Sirz Benjie 2025-08-11 17:01:06 -05:00
parent 580ce6f046
commit 6d4bc5f3bf
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -57,9 +57,9 @@ export class RibbonData {
/** Flag for winning classic */
public static readonly CLASSIC = 0x80000 as RibbonFlag;
/** Flag for winning the nuzzlocke challenge */
public static readonly NUZLOCKE = 0x80000 as RibbonFlag;
public static readonly NUZLOCKE = 0x100000 as RibbonFlag;
/** Flag for reaching max friendship */
public static readonly FRIENDSHIP = 0x100000 as RibbonFlag;
public static readonly FRIENDSHIP = 0x200000 as RibbonFlag;
//#endregion Ribbons
constructor(value: number) {