koishi-plugin-ciyi 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -175,7 +175,7 @@ ${formattedRanks}`;
|
|
|
175
175
|
return await sendMsg(session, "请输入两字词语!");
|
|
176
176
|
}
|
|
177
177
|
if (!allWords_default.includes(guess)) {
|
|
178
|
-
return await sendMsg(session,
|
|
178
|
+
return await sendMsg(session, `${guess} 不在词库中`);
|
|
179
179
|
}
|
|
180
180
|
let gameInfo = (await ctx.database.get("ciyi", {
|
|
181
181
|
channelId: session.channelId
|
|
@@ -316,7 +316,7 @@ ${formattedRanks}`;
|
|
|
316
316
|
}
|
|
317
317
|
);
|
|
318
318
|
}
|
|
319
|
-
const msg =
|
|
319
|
+
const msg = `词意每日挑战开始!
|
|
320
320
|
|
|
321
321
|
目标
|
|
322
322
|
猜出系统选择的两字词语
|