This commit is contained in:
L̷O̷N̷D̷O̷N̷少林 2025-01-15 13:21:02 -05:00 committed by GitHub
parent 817f511df4
commit 2aa0efdf26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -138,7 +138,7 @@ export default class extends Module {
@bindThis
private async mentionHook(msg: Message) {
if (msg.includes(['顔文字', '絵文字', 'emoji', '福笑い'])) {
if (msg.includes(['Emoticons', 'Emoji', 'emoji', 'Fukuwarai'])) {
const hand = hands[Math.floor(Math.random() * hands.length)];
const face = faces[Math.floor(Math.random() * faces.length)];
const emoji = Array.isArray(hand) ? hand[0] + face + hand[1] : hand + face + hand;