返回提交历史
Modified
src/services/worldStateService.ts
+1
-1
XFEstudio/SpaceNinjaServer
chore: fix error message
635149a8
代码差异
1 个文件
+1
-1
@@ -5109,7 +5109,7 @@ const pushFlashSales = (
5109
5109
5110
5110
const seasonalCategory = ws.InGameMarket.LandingPage.Categories.find(c => c.CategoryName == category);
5111
5111
if (!seasonalCategory) {
5112
throw new Error(`No market category ${seasonalCategory} in static worldState data`);
5112
throw new Error(`No market category ${category} in static worldState data`);
5113
5113
}
5114
5114
seasonalCategory.Items!.push(...storeItems.map(x => x.TypeName));
5115
5115
};