mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 15:38:00 +00:00
✌️
This commit is contained in:
parent
6bd4ae2268
commit
d7bbd58807
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"_v": "1.1.1",
|
||||
"_v": "1.1.2",
|
||||
"main": "./built/index.js",
|
||||
"scripts": {
|
||||
"start": "node ./built",
|
||||
|
|
|
@ -31,7 +31,7 @@ export default class extends Module {
|
|||
noteId: note.id,
|
||||
reaction: reaction
|
||||
});
|
||||
}, 1000);
|
||||
}, 1500);
|
||||
};
|
||||
|
||||
const customEmojis = note.text.match(/:([^\n:]+?):/g);
|
||||
|
|
|
@ -15,7 +15,9 @@ export default class extends Module {
|
|||
@autobind
|
||||
private async mentionHook(msg: Message) {
|
||||
if (msg.text && msg.text.includes('ping')) {
|
||||
msg.reply('PONG!');
|
||||
msg.reply('PONG!', {
|
||||
immediate: true
|
||||
});
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
|
|
|
@ -424,6 +424,7 @@ export default {
|
|||
'あぅ',
|
||||
'ふみゃ〜',
|
||||
'ふぁ… ねむねむですー',
|
||||
'ヾ(๑╹◡╹)ノ"',
|
||||
],
|
||||
want: item => `${item}、欲しいなぁ...`,
|
||||
see: item => `お散歩していたら、道に${item}が落ちているのを見たんです!`,
|
||||
|
|
Loading…
Reference in a new issue