From b549baa99e52ac626f2e51a0bec8f4ea92b8fe67 Mon Sep 17 00:00:00 2001 From: zhiyu1998 Date: Thu, 23 Feb 2023 15:55:08 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E9=83=A8=E5=88=86=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/mystery.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/mystery.js b/apps/mystery.js index bd249b1..89b2dba 100644 --- a/apps/mystery.js +++ b/apps/mystery.js @@ -188,14 +188,14 @@ export class mystery extends plugin { }) .then(json => { if (!json.length) { - e.reply("探索失败,你再我去一次吧"); + e.reply("请求失败,你再试一次吧"); return false; } const content = json[randomIndex].content; images = this.getImages2(content.rendered); // 如果图片为空直接返回 if (images.length === 0) { - e.reply("探索失败,你再我去一次吧"); + e.reply("请求失败,你再试一次吧"); return false; } // 洗牌 @@ -220,7 +220,7 @@ export class mystery extends plugin { async setu(e) { const keyword = e.msg.split(" ")[1]; const numb = this.mysteryConfig.setu.count; - await e.reply("正在给你找图片啦~", true, { recallMsg: 7 }); + await e.reply("真变态啊...", true, { recallMsg: 7 }); let url = `https://api.lolicon.app/setu/v2?r18=${keyword}&num=${numb}`; //←此处修改图片类型,0为非18,1为18,2为18非18混合 const response = await fetch(url); @@ -238,7 +238,7 @@ export class mystery extends plugin { const res = await this.reply(await Bot.makeForwardMsg(images), false, { recallMsg: 60 }); if (!res) { - return e.reply("好、好涩(//// ^ ////)……不、不行啦……被、被吞啦o(≧口≦)o", true, { + return e.reply("请求失败,你再试一次吧", true, { recallMsg: 60, }); }