Skip to content

Commit

Permalink
Fixing issue where emoji speaker isnt showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
RichtXO committed Mar 27, 2024
1 parent 0216003 commit 2f0be00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/richtxo/commands/music/Leave.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public Mono<Void> handle(ChatInputInteractionEvent event) {
voiceChannel.sendDisconnectVoiceState().subscribe();
})
.flatMap(VoiceConnection::disconnect)
.then(event.reply(String.format("Leaving `\\uD83d\\uDD0A %s`!", voiceChannel.getName())))
.then(event.reply(String.format("Leaving `\uD83d\uDD0A %s`!", voiceChannel.getName())))
.subscribe();
})
.doOnError(t -> event.reply("Something happened..."))
Expand Down

0 comments on commit 2f0be00

Please sign in to comment.