Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Vylpes committed Oct 12, 2024
1 parent 76af70d commit 73caf93
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/database/entities/app/Inventory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ export default class Inventory extends AppBaseEntity {
this.Quantity = quantity;
}

public AddQuantity(amount: number) {
this.Quantity += amount;
}

public RemoveQuantity(amount: number) {
if (this.Quantity < amount) return;

Expand Down

0 comments on commit 73caf93

Please sign in to comment.