返回提交历史
Modified
src/services/itemDataService.ts
+9
-0
XFEstudio/SpaceNinjaServer
chore: update price for carrier in U13.4.1 (#4053)
Closes #3888 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/4053 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
a9963adc
代码差异
1 个文件
+9
-0
@@ -2946,6 +2946,15 @@ export const getPrice = (
2946
2946
return u7WeaponCosts[internalName];
2947
2947
}
2948
2948
2949
// Hardcoded sale in this version
2950
if (
2951
usePremium &&
2952
buildLabel == "2014.05.23.12.12/" &&
2953
storeItemName == "/Lotus/StoreItems/Types/Sentinels/SentinelPowersuits/CarrierPowerSuit"
2954
) {
2955
return 60;
2956
}
2957
2949
2958
let price: number | undefined;
2950
2959
if (isBundle) {
2951
2960
const bundle = getBundle(storeItemName, buildLabel)!;