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