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:
omegablast2002@yahoo.com
2012-08-24 00:24:26 +00:00
parent fffe739ec1
commit 101582e37e

View File

@@ -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"));