diff --git a/.env.example b/.env.example index add48a5..871a021 100644 --- a/.env.example +++ b/.env.example @@ -7,7 +7,7 @@ # any secret values. BOT_TOKEN= -BOT_VER=0.8.2 +BOT_VER=0.8.1 BOT_AUTHOR=Vylpes BOT_OWNERID=147392775707426816 BOT_CLIENTID=682942374040961060 diff --git a/package.json b/package.json index 8b068bc..f4289aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "card-drop", - "version": "0.8.2", + "version": "0.8.1", "main": "./dist/bot.js", "typings": "./dist", "scripts": { diff --git a/src/database/entities/app/Inventory.ts b/src/database/entities/app/Inventory.ts index 258527d..c780dad 100644 --- a/src/database/entities/app/Inventory.ts +++ b/src/database/entities/app/Inventory.ts @@ -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;