mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-23 05:05:53 +12:00
Fix interest.
This commit is contained in:
parent
8b36407981
commit
b939c9e142
6 changed files with 20 additions and 17 deletions
|
@ -599,7 +599,7 @@ namespace HISP.Game
|
|||
double moneyMade = 0;
|
||||
if (user.BankInterest > user.BankMoney)
|
||||
{
|
||||
moneyMade = user.BankMoney - user.BankInterest;
|
||||
moneyMade = user.BankInterest - user.BankMoney;
|
||||
user.BankMoney = user.BankInterest;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue