Fix inventory showing quantities set to 0 (#239)
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. - Fix a bug where the inventory would show a "x0" quantity when there were entities in the database with a current quantity of 0. - This occurs when you sacrifice cards, that command can't delete the row as it has claims connected to it in another table, so we need to maintain that key. #227 ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) # How Has This Been Tested? Please describe the tests that you ran to verify the changes. Provide instructions so we can reproduce. Please also list any relevant details to your test configuration. # Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that provde my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules Co-authored-by: VylpesTester <tester@vylpes.com> Reviewed-on: #239 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
parent
5f513d740e
commit
aa1ee5588a
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,8 @@ export default class InventoryHelper {
|
||||||
.filter(x => {
|
.filter(x => {
|
||||||
x.cards = x.cards
|
x.cards = x.cards
|
||||||
.sort((a, b) => b.type - a.type)
|
.sort((a, b) => b.type - a.type)
|
||||||
.filter(y => inventory.find(z => z.CardNumber == y.id));
|
.filter(y => inventory.find(z => z.CardNumber == y.id))
|
||||||
|
.filter(y => inventory.find(z => z.CardNumber == y.id)!.Quantity > 0);
|
||||||
|
|
||||||
return x;
|
return x;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue