update unlockAllSkins to use ExportCustoms
This commit is contained in:
parent
ddc9b9fce1
commit
af3bac3d2c
@ -6,10 +6,9 @@ import { Request, RequestHandler, Response } from "express";
|
|||||||
import { config } from "@/src/services/configService";
|
import { config } from "@/src/services/configService";
|
||||||
import allMissions from "@/static/fixed_responses/allMissions.json";
|
import allMissions from "@/static/fixed_responses/allMissions.json";
|
||||||
import allShipDecorations from "@/static/fixed_responses/allShipDecorations.json";
|
import allShipDecorations from "@/static/fixed_responses/allShipDecorations.json";
|
||||||
import allSkins from "@/static/fixed_responses/allSkins.json";
|
|
||||||
import { ILoadoutDatabase } from "@/src/types/saveLoadoutTypes";
|
import { ILoadoutDatabase } from "@/src/types/saveLoadoutTypes";
|
||||||
import { IShipInventory } from "@/src/types/inventoryTypes/inventoryTypes";
|
import { IShipInventory } from "@/src/types/inventoryTypes/inventoryTypes";
|
||||||
import { ExportFlavour, ExportKeys } from "warframe-public-export-plus";
|
import { ExportCustoms, ExportFlavour, ExportKeys } from "warframe-public-export-plus";
|
||||||
|
|
||||||
const inventoryController: RequestHandler = async (request: Request, response: Response) => {
|
const inventoryController: RequestHandler = async (request: Request, response: Response) => {
|
||||||
let accountId;
|
let accountId;
|
||||||
@ -88,12 +87,12 @@ const inventoryController: RequestHandler = async (request: Request, response: R
|
|||||||
|
|
||||||
if (config.unlockAllSkins) {
|
if (config.unlockAllSkins) {
|
||||||
inventoryResponse.WeaponSkins = [];
|
inventoryResponse.WeaponSkins = [];
|
||||||
for (const skin of allSkins) {
|
for (const uniqueName in ExportCustoms) {
|
||||||
inventoryResponse.WeaponSkins.push({
|
inventoryResponse.WeaponSkins.push({
|
||||||
ItemId: {
|
ItemId: {
|
||||||
$oid: "000000000000000000000000"
|
$oid: "000000000000000000000000"
|
||||||
},
|
},
|
||||||
ItemType: skin
|
ItemType: uniqueName
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user