Skip to content

Commit

Permalink
Minor text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibowl committed Dec 22, 2021
1 parent 6254e07 commit 6437e26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/HuTaoClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ intents.add(
"DIRECT_MESSAGES",
// For follow stuff, also required for guild messages for some reason?
"GUILDS",
// For handling commands in guilds, reactions for X to delete
// For handling commands in guilds
"GUILD_MESSAGES",
)

Expand Down
4 changes: 2 additions & 2 deletions src/commands/news/follow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ ${createTable(

async runUnfollow(source: CommandSource, category: FollowCategory): Promise<SendMessage | undefined> {
if (!(source.channel instanceof TextChannel) || source.guild == null)
return sendMessage(source, "Unable to check channel", undefined, true)
return sendMessage(source, "Unable to unfollow in this channel", undefined, true)

const { followManager } = client

Expand All @@ -202,7 +202,7 @@ ${createTable(
}
async runFollow(source: CommandSource, category: FollowCategory): Promise<SendMessage | undefined> {
if (!(source.channel instanceof TextChannel) || source.guild == null)
return sendMessage(source, "Unable to check channel", undefined, true)
return sendMessage(source, "Unable to follow in this channel", undefined, true)

const { followManager } = client

Expand Down

0 comments on commit 6437e26

Please sign in to comment.