these rewards should show as "identified"
All checks were successful
Build / build (pull_request) Successful in 46s
Build / build (push) Successful in 1m19s

This commit is contained in:
Sainan 2025-04-16 01:32:27 +02:00
parent 9045f7bf2f
commit 8a9388b076

View File

@ -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"
});
}
}
}