XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

SpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 1 Star 0
返回提交历史

XFEstudio/SpaceNinjaServer

fix: incorrect ordering of relicQualitySuffixes (#2708)

Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2708 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

0d791ad1
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +3 -3
Modified src/controllers/custom/getItemListsController.ts +3 -3
@@ -64,9 +64,9 @@ interface ItemLists {
64 64
65 65 const relicQualitySuffixes: Record<TRelicQuality, string> = {
66 66 VPQ_BRONZE: "",
67 VPQ_SILVER: " [Flawless]",
68 VPQ_GOLD: " [Radiant]",
69 VPQ_PLATINUM: " [Exceptional]"
67 VPQ_SILVER: " [Exceptional]",
68 VPQ_GOLD: " [Flawless]",
69 VPQ_PLATINUM: " [Radiant]"
70 70 };
71 71
72 72 /*const toTitleCase = (str: string): string => {