players lose 5% of their stock if a stock drops 80%

This commit is contained in:
Lorenc Pekaj 2019-05-30 20:24:31 +10:00
parent 3313fc3929
commit 90b731c57a

View File

@ -36,7 +36,7 @@ static const Float: STOCK_DEFAULT_START_DONATIONS = 0.0; // the default amount t
static const Float: STOCK_DEFAULT_START_PRICE = 0.0; // the default starting price for a new report (useless)
static const Float: STOCK_BANKRUPTCY_PERCENT = -80.0; // the % that makes a company go bankrupt
static const Float: STOCK_BANKRUPTCY_LOSS_PERCENT = 20.0; // the % that is lost by the user when a stock drops
static const Float: STOCK_BANKRUPTCY_LOSS_PERCENT = 5.0; // the % that is lost by the user when a stock drops
// static const Float: STOCK_BANKRUPTCY_MIN_PERCENT = -5.0; // the % that should make a company go bankrupt 'again' after it is $1
/* ** Variables ** */