Skip to content

Commit

Permalink
chore(constants): Rename activity type 0 to PLAYING (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsian03 authored Oct 22, 2024
1 parent 480d5bf commit 9148597
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/Constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export default interface Constants {
EMBEDDED: 256;
};
ActivityTypes: {
PLAYING: 0;
/** @deprecated */
GAME: 0;
STREAMING: 1;
LISTENING: 2;
Expand Down
2 changes: 2 additions & 0 deletions lib/Constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ module.exports.ActivityFlags = {
};

module.exports.ActivityTypes = {
PLAYING: 0,
/** @deprecated */
GAME: 0,
STREAMING: 1,
LISTENING: 2,
Expand Down

0 comments on commit 9148597

Please sign in to comment.