From 331ef9ce9010d7ab94ac421aa81a42ca567bde7c Mon Sep 17 00:00:00 2001 From: n1lsqn Date: Tue, 14 Nov 2023 16:34:01 +0900 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E6=9B=B2=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/recommend-music/index.ts | 3 ++- torisetu.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/modules/recommend-music/index.ts b/src/modules/recommend-music/index.ts index d48eac6..e0dbc0e 100644 --- a/src/modules/recommend-music/index.ts +++ b/src/modules/recommend-music/index.ts @@ -103,7 +103,8 @@ const vocaloidUrls = [ 'https://www.nicovideo.jp/watch/sm3075492', 'https://www.nicovideo.jp/watch/sm12850213', 'https://www.nicovideo.jp/watch/sm10150980', - 'https://www.youtube.com/watch?v=CoL42lnNtp8' + 'https://www.youtube.com/watch?v=CoL42lnNtp8', + 'https://www.nicovideo.jp/watch/sm39853779' // ** ] diff --git a/torisetu.md b/torisetu.md index 44bfb76..88b0bf3 100644 --- a/torisetu.md +++ b/torisetu.md @@ -7,7 +7,7 @@ ## 独自機能 ### 曲紹介 -「曲」「音楽」などと話しかけると、リストにある中からランダムで曲をおすすめしてくれます。(現在40曲程度) +「曲」「音楽」などと話しかけると、リストにある中からランダムで曲をおすすめしてくれます。(現在100曲程度) ### なでなで 「なでなで」「撫でて」「なでて」と投稿すると、藍が撫でに行きます。 From 8baacb7cbbb19845107c4d69ab62335b72112399 Mon Sep 17 00:00:00 2001 From: n1lsqn Date: Wed, 15 Nov 2023 17:19:20 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=E9=96=93=E9=9A=94=E5=A2=97?= =?UTF-8?q?=E3=82=84=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/noting/index.ts | 2 +- src/modules/poll/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/noting/index.ts b/src/modules/noting/index.ts index c695504..299521b 100644 --- a/src/modules/noting/index.ts +++ b/src/modules/noting/index.ts @@ -15,7 +15,7 @@ export default class extends Module { if (Math.random() < 0.04) { this.post(); } - }, 1000 * 60 * 10); + }, 1000 * 60 * 60); return {}; } diff --git a/src/modules/poll/index.ts b/src/modules/poll/index.ts index a5339f5..d43adfb 100644 --- a/src/modules/poll/index.ts +++ b/src/modules/poll/index.ts @@ -15,7 +15,7 @@ export default class extends Module { if (Math.random() < 0.1) { this.post(); } - }, 1000 * 60 * 60); + }, 1000 * 60 * 120); return { mentionHook: this.mentionHook,