Merge branch 'develop' into feature/203-sacrifice-command
All checks were successful
Test / build (push) Successful in 10s

This commit is contained in:
Vylpes 2024-05-17 21:00:33 +01:00
commit a59d3ca887
10 changed files with 138 additions and 10 deletions

View file

@ -13,10 +13,6 @@ export default class User extends AppBaseEntity {
@Column()
Currency: number;
public UpdateCurrency(currency: number) {
this.Currency = currency;
}
public AddCurrency(amount: number) {
this.Currency += amount;
}