Skip to content

Commit

Permalink
refactor: switch to custom status
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev committed Aug 29, 2023
1 parent 0c274d4 commit 09a3eea
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 62 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
## [4.0.1](https://github.com/h-projects/gasbot/compare/4.0.0...4.0.1) (2023-08-01)


### Bug Fixes

* **detector:** correctly log old nickname ([3debfb9](https://github.com/h-projects/gasbot/commit/3debfb94227358e378ce6d422eb2aab0d315680a))
* display changelog for 4.0 ([12d4f17](https://github.com/h-projects/gasbot/commit/12d4f179ebfdae18917f115b05ca13e8aaa7e6ad))
* improve message permission checks ([0e88cd3](https://github.com/h-projects/gasbot/commit/0e88cd35476e341c6c0a8bf5599188e5f1a55c52))


- **detector:** correctly log old nickname ([3debfb9](https://github.com/h-projects/gasbot/commit/3debfb94227358e378ce6d422eb2aab0d315680a))
- display changelog for 4.0 ([12d4f17](https://github.com/h-projects/gasbot/commit/12d4f179ebfdae18917f115b05ca13e8aaa7e6ad))
- improve message permission checks ([0e88cd3](https://github.com/h-projects/gasbot/commit/0e88cd35476e341c6c0a8bf5599188e5f1a55c52))

# [4.0.0](https://github.com/h-projects/gasbot/compare/3.1.3...4.0.0) (2023-04-21)

Expand Down
106 changes: 53 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@prisma/client": "^5.0.0",
"@superchupu/topgg-autoposter": "^2.0.2",
"bufferutil": "^4.0.7",
"discord.js": "^14.12.1",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"g-detector": "^0.1.4",
"neon-env": "^0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/classes/Application.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class Application<Ready extends boolean = boolean> extends Client<Ready>
partials: [Partials.GuildMember, Partials.Message, Partials.Reaction, Partials.User],
allowedMentions: { parse: ['users'] },
presence: {
activities: [{ name: '/h | Removinq G!', type: ActivityType.Playing }],
activities: [{ name: 'Removinq G!', type: ActivityType.Custom }],
status: PresenceUpdateStatus.DoNotDisturb
}
});
Expand Down
2 changes: 1 addition & 1 deletion src/commands/logs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ export const slashCommandData = new SlashCommandBuilder()
option
.setName('channel')
.setDescription('Set loqs channel')
.addChannelTypes(ChannelType.GuildText, ChannelType.GuildNews)
.addChannelTypes(ChannelType.GuildText, ChannelType.GuildAnnouncement)
.setRequired(false)
);

0 comments on commit 09a3eea

Please sign in to comment.