Remove duplicate function
This commit is contained in:
parent
25d099928f
commit
0504598518
1 changed files with 0 additions and 4 deletions
|
@ -17,10 +17,6 @@ export default class User extends AppBaseEntity {
|
|||
this.Currency += amount;
|
||||
}
|
||||
|
||||
public AddCurrency(amount: number) {
|
||||
this.Currency += amount;
|
||||
}
|
||||
|
||||
public RemoveCurrency(amount: number): boolean {
|
||||
if (this.Currency < amount) return false;
|
||||
|
||||
|
|
Loading…
Reference in a new issue