Skip to content

Commit

Permalink
feat: added U+200B to disable mentions in discord
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholass003 committed Jul 11, 2024
1 parent 8f844b0 commit 96de11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function onPlayerChat(PlayerChatEvent $event) : void{

public static function sendLog(string $message) : void{
$data = [
'content' => $message,
'content' => str_replace("@", "@​", $message),
];
Server::getInstance()->getAsyncPool()->submitTask(new BulkCurlTask(
[
Expand Down

0 comments on commit 96de11c

Please sign in to comment.