increased life delta bonus to 10k, it seems the general consensus is people think it is bugged becuase they dont gain over 500 points from it. after seeing multiple people reporting it I think it would be best to increase the bonus just to avoid confusion.
This commit is contained in:
@@ -195,8 +195,8 @@ void Credits::compute(GameObserver* g, GameApp * _app)
|
||||
int diff = p1->life - p2->life;
|
||||
if (diff < 0)
|
||||
diff = 0;
|
||||
if (diff > 500)
|
||||
diff = 500;
|
||||
if (diff > 10000)
|
||||
diff = 10000;
|
||||
if (diff)
|
||||
{
|
||||
CreditBonus * b = NEW CreditBonus(diff, _("Life Delta Bonus"));
|
||||
|
||||
Reference in New Issue
Block a user