mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-14 19:39:29 +02:00
fix overlapping flag set
This commit is contained in:
parent
580ce6f046
commit
6d4bc5f3bf
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user