fix: failure to remove shard installed via webui (#1129)
Fixes #1128 Reviewed-on: #1129
This commit is contained in:
parent
92d53e1c00
commit
3af15881f5
@ -57,17 +57,18 @@ export const infestedFoundryController: RequestHandler = async (req, res) => {
|
|||||||
const inventory = await getInventory(accountId);
|
const inventory = await getInventory(accountId);
|
||||||
const suit = inventory.Suits.find(suit => suit._id.toString() == request.SuitId.$oid)!;
|
const suit = inventory.Suits.find(suit => suit._id.toString() == request.SuitId.$oid)!;
|
||||||
|
|
||||||
// refund shard
|
const miscItemChanges: IMiscItem[] = [];
|
||||||
const shard = Object.entries(colorToShard).find(
|
if (suit.ArchonCrystalUpgrades![request.Slot].Color) {
|
||||||
([color]) => color == suit.ArchonCrystalUpgrades![request.Slot].Color
|
// refund shard
|
||||||
)![1];
|
const shard = Object.entries(colorToShard).find(
|
||||||
const miscItemChanges = [
|
([color]) => color == suit.ArchonCrystalUpgrades![request.Slot].Color
|
||||||
{
|
)![1];
|
||||||
|
miscItemChanges.push({
|
||||||
ItemType: shard,
|
ItemType: shard,
|
||||||
ItemCount: 1
|
ItemCount: 1
|
||||||
}
|
});
|
||||||
];
|
addMiscItems(inventory, miscItemChanges);
|
||||||
addMiscItems(inventory, miscItemChanges);
|
}
|
||||||
|
|
||||||
// remove from suit
|
// remove from suit
|
||||||
suit.ArchonCrystalUpgrades![request.Slot] = {};
|
suit.ArchonCrystalUpgrades![request.Slot] = {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user