koishi-plugin-ggcevo-game 1.0.3 → 1.0.4
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
|
@@ -1257,7 +1257,7 @@ ${output}`;
|
|
|
1257
1257
|
return "操作失败,请稍后重试。错误详情已记录";
|
|
1258
1258
|
}
|
|
1259
1259
|
});
|
|
1260
|
-
ctx.command("
|
|
1260
|
+
ctx.command("ggcevo/成就").action(async ({ session }) => {
|
|
1261
1261
|
const [profile] = await ctx.database.get("sc2arcade_player", { userId: session.userId });
|
|
1262
1262
|
if (!profile) {
|
|
1263
1263
|
return "您的 QQ 未绑定句柄。";
|
|
@@ -1281,7 +1281,7 @@ ${output}`;
|
|
|
1281
1281
|
return `${regionId}-S2-${realmId}-${profileId} 已获得的成就:
|
|
1282
1282
|
${achievementList.join("\n")}`;
|
|
1283
1283
|
});
|
|
1284
|
-
ctx.command("
|
|
1284
|
+
ctx.command("ggcevo/个人信息").action(async (argv) => {
|
|
1285
1285
|
const session = argv.session;
|
|
1286
1286
|
const output = [];
|
|
1287
1287
|
const [profile] = await ctx.database.get("sc2arcade_player", { userId: session.userId });
|