Fix build
This commit is contained in:
parent
76af70da06
commit
73caf9315d
1 changed files with 0 additions and 4 deletions
|
@ -29,10 +29,6 @@ export default class Inventory extends AppBaseEntity {
|
||||||
this.Quantity = quantity;
|
this.Quantity = quantity;
|
||||||
}
|
}
|
||||||
|
|
||||||
public AddQuantity(amount: number) {
|
|
||||||
this.Quantity += amount;
|
|
||||||
}
|
|
||||||
|
|
||||||
public RemoveQuantity(amount: number) {
|
public RemoveQuantity(amount: number) {
|
||||||
if (this.Quantity < amount) return;
|
if (this.Quantity < amount) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue