diff --git a/src/modules/keyword/index.ts b/src/modules/keyword/index.ts index 334533b..b9305e7 100644 --- a/src/modules/keyword/index.ts +++ b/src/modules/keyword/index.ts @@ -28,7 +28,9 @@ export default class KeywordModule implements IModule { } private say = async (msg?: MessageLike) => { - const tl = await this.ai.api('notes/local-timeline'); + const tl = await this.ai.api('notes/local-timeline', { + limit: 30 + }); const interestedNotes = tl.filter(note => note.userId !== this.ai.account.id && note.text != null); diff --git a/src/serifs.ts b/src/serifs.ts index ca5639c..0d27901 100644 --- a/src/serifs.ts +++ b/src/serifs.ts @@ -90,5 +90,5 @@ export default { /** * キーワード */ - KEYWORD: '({word}... {reading}...)', + KEYWORD: '({word}..... {reading}..... 覚えました)', };