feat: obtaining crewship related items on mission update #897

Merged
OrdisPrime merged 3 commits from AMelonInsideLemon/SpaceNinjaServer:crewship-rewards into main 2025-02-05 12:23:35 -08:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 604c87637e - Show all commits

View File

@ -124,6 +124,7 @@ export const addMissionInventoryUpdates = (
addMods(inventory, value); addMods(inventory, value);
break; break;
case "MiscItems": case "MiscItems":
case "BonusMiscItems":
addMiscItems(inventory, value); addMiscItems(inventory, value);
break; break;
case "Consumables": case "Consumables":

View File

@ -42,6 +42,7 @@ export type IMissionInventoryUpdateRequest = {
FusionBundels?: ITypeCount[]; FusionBundels?: ITypeCount[];
CrewShipRawSalvage?: ITypeCount[]; CrewShipRawSalvage?: ITypeCount[];
CrewShipAmmo?: ITypeCount[]; CrewShipAmmo?: ITypeCount[];
BonusMiscItems?: ITypeCount[];
AffiliationChanges?: IAffiliationChange[]; AffiliationChanges?: IAffiliationChange[];
crossPlaySetting?: string; crossPlaySetting?: string;