Skip to content

Commit

Permalink
feat: メンションの先頭にアットマークを入れるように (#145)
Browse files Browse the repository at this point in the history
* feat: メンションの先頭にアットマークを入れるように

* feat: メンションの先頭にアットマークを入れるように (2)
  • Loading branch information
book000 authored Jun 15, 2024
1 parent b0397ab commit 11600e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ interface BaseReplacer {
val id = Snowflake(match.groupValues[1]) // 0 is for whole match
val name = nameSupplier(VCSpeaker.kord, id)

Token(name, "Mentionable `$id` →「$name")
Token("@$name", "Mentionable `$id` →「$name")
}

newTokens.addAll(additions)
Expand Down

0 comments on commit 11600e3

Please sign in to comment.