diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index dd67404b..52c6c6f9 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -1148,7 +1148,11 @@ function getRandomMissionDrops(RewardInfo: IRewardInfo, tierOverride: number | u ][qualification % 3] ); if (drop) { - drops.push({ StoreItem: drop.type, ItemCount: drop.itemCount }); + drops.push({ + StoreItem: drop.type, + ItemCount: drop.itemCount, + FromEnemyCache: true // to show "identified" + }); } } }