Skip to content

Commit

Permalink
Add some emojis to the whisper enable/disable messages
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Oct 23, 2024
1 parent 43001b1 commit d46a6c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/D2Commands/Misc/WhisperCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public class WhisperCommand: StringCommand {

if configuration.enabledChannelIds.contains(channelId) {
configuration.enabledChannelIds.remove(channelId)
await output.append("Disabled whisper mode on this channel")
await output.append(":scream: Disabled whisper mode on this channel")
} else {
configuration.enabledChannelIds.insert(channelId)
await output.append("Enabled whisper mode on this channel")
await output.append(":shushing_face: Enabled whisper mode on this channel")
}
}
}

0 comments on commit d46a6c4

Please sign in to comment.