fix: toStoreItem not converting boosters #2147

Merged
Sainan merged 1 commits from tsi-booster-fix into main 2025-06-11 03:10:11 -07:00

View File

@ -233,7 +233,7 @@ export const isStoreItem = (type: string): boolean => {
};
export const toStoreItem = (type: string): string => {
if (type.startsWith("/Lotus/Types/StoreItems/Boosters/")) {
if (type.startsWith("/Lotus/Types/Boosters/")) {
const boosterEntry = Object.entries(ExportBoosters).find(arr => arr[1].typeName == type);
if (boosterEntry) {
return boosterEntry[0];