fix: switching to drifter doesn't save (#334)
This commit is contained in:
parent
2f9ac5dc7b
commit
f9414dcf84
@ -171,6 +171,10 @@ export const handleInventoryItemConfigChange = async (
|
||||
inventory.EquippedGear = equipment as string[];
|
||||
break;
|
||||
}
|
||||
case "UseAdultOperatorLoadout": {
|
||||
inventory.UseAdultOperatorLoadout = equipment as boolean;
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
logger.error(`category not implemented: ${equipmentName}`, { config: equipment });
|
||||
}
|
||||
|
@ -239,7 +239,7 @@ export interface IInventoryResponse {
|
||||
CrewMembers: ICrewMember[];
|
||||
AdultOperatorLoadOuts: IOperatorConfigClient[];
|
||||
LotusCustomization: ILotusCustomization;
|
||||
UseAdultOperatorLoadout: boolean;
|
||||
UseAdultOperatorLoadout?: boolean;
|
||||
DailyAffiliationZariman: number;
|
||||
NemesisAbandonedRewards: string[];
|
||||
DailyAffiliationKahl: number;
|
||||
|
@ -33,6 +33,7 @@ export interface ISaveLoadoutRequest {
|
||||
CurrentLoadOutIds: IOid[];
|
||||
ValidNewLoadoutId: string;
|
||||
EquippedGear: string[];
|
||||
UseAdultOperatorLoadout: boolean;
|
||||
}
|
||||
|
||||
export interface ISaveLoadoutRequestNoUpgradeVer extends Omit<ISaveLoadoutRequest, "UpgradeVer"> {}
|
||||
|
Loading…
x
Reference in New Issue
Block a user