Skip to content

Commit

Permalink
fix: 🐛 プライベートメッセージにSeleneChatの接頭辞が付いていた問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueSheep2804 committed Dec 4, 2024
1 parent 6fbe2e0 commit 85cd6c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class MessageCommand : ICommand {
}

val returnMessage = ChatMessage.privateMessage(message, sender, receiver)
sender.sendCommandResult(returnMessage)
receiver.sendCommandResult(returnMessage)
sender.sendMessage(returnMessage)
receiver.sendMessage(returnMessage)
return true
}

Expand Down

0 comments on commit 85cd6c0

Please # to comment.