Skip to content

Commit

Permalink
fix: wrong enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Nov 19, 2023
1 parent af452a6 commit aa0ba9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/structures/ClientUser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { Guild } from "./Guild";
import { User } from "./User";

export enum ActivityPartyPrivacy {
PUBLIC = 0,
PRIVATE = 1
PRIVATE = 0,
PUBLIC = 1
}

export type SetActivity = {
Expand Down

0 comments on commit aa0ba9b

Please sign in to comment.