Skip to content

Commit

Permalink
Fix #18 (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-The-Geek committed Jul 4, 2021
1 parent e4b10ef commit c6a259c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public void sendSystemMessage(Text message, UUID senderUuid) {
}
buffer.append(content);
} else {
this.channel.sendMessage(content).queue();
if (!content.isBlank()) { // some mods are naughty and send empty messages :>
this.channel.sendMessage(content).queue();
}
}
}

Expand Down

0 comments on commit c6a259c

Please sign in to comment.