koishi-plugin-ggcevo-game 1.2.33 → 1.2.35
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 +6 -4
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1306,7 +1306,7 @@ ${itemDetails.join("\n")}`;
|
|
|
1306
1306
|
pageMaxDate = recordDate;
|
|
1307
1307
|
}
|
|
1308
1308
|
const handle = `${record.profile.regionId}-S2-${record.profile.realmId}-${record.profile.profileId}`;
|
|
1309
|
-
const [ggcrank] = await ctx.database.get("ggcevo_rank", { handle });
|
|
1309
|
+
const [ggcrank] = await ctx.database.get("ggcevo_rank", { handle, rankseason: config.rankseason });
|
|
1310
1310
|
await ctx.database.upsert("ggcevo_rank", [{
|
|
1311
1311
|
handle,
|
|
1312
1312
|
name: record.profile.name,
|
|
@@ -1367,7 +1367,7 @@ ${itemDetails.join("\n")}`;
|
|
|
1367
1367
|
pageMaxDate = recordDate;
|
|
1368
1368
|
}
|
|
1369
1369
|
const handle = `${record.profile.regionId}-S2-${record.profile.realmId}-${record.profile.profileId}`;
|
|
1370
|
-
const [ggcrank] = await ctx.database.get("ggcevo_rank", { handle });
|
|
1370
|
+
const [ggcrank] = await ctx.database.get("ggcevo_rank", { handle, rankseason: config.rankseason });
|
|
1371
1371
|
await ctx.database.upsert("ggcevo_rank", [{
|
|
1372
1372
|
handle,
|
|
1373
1373
|
name: record.profile.name,
|
|
@@ -1560,7 +1560,8 @@ ${itemDetails.join("\n")}`;
|
|
|
1560
1560
|
const { regionId, realmId, profileId } = profile;
|
|
1561
1561
|
const handle = `${regionId}-S2-${realmId}-${profileId}`;
|
|
1562
1562
|
const [user] = await ctx.database.get("ggcevo_rank", {
|
|
1563
|
-
handle
|
|
1563
|
+
handle,
|
|
1564
|
+
rankseason: config.rankseason
|
|
1564
1565
|
});
|
|
1565
1566
|
if (!user) return "暂未找到您的排名信息。";
|
|
1566
1567
|
if (user.Blacklist) return "❌ 您已经被禁止参加本赛季胜点榜。";
|
|
@@ -1593,7 +1594,8 @@ ${itemDetails.join("\n")}`;
|
|
|
1593
1594
|
const { regionId, realmId, profileId } = profile;
|
|
1594
1595
|
const handle = `${regionId}-S2-${realmId}-${profileId}`;
|
|
1595
1596
|
const [user] = await ctx.database.get("ggcevo_rank", {
|
|
1596
|
-
handle
|
|
1597
|
+
handle,
|
|
1598
|
+
rankseason: config.rankseason
|
|
1597
1599
|
});
|
|
1598
1600
|
if (!user) return "暂未找到对方的排名信息。";
|
|
1599
1601
|
if (user.Blacklist) return "❌ 对方已经被禁止参加本赛季胜点榜。";
|