increased exp more

This commit is contained in:
Mini-Chiss 2015-05-13 17:08:56 -05:00
parent 093bbde792
commit 44cb6d8a62
1 changed files with 2 additions and 2 deletions

View File

@ -54,10 +54,10 @@ public class ExperienceStatTracker extends StatTracker<Game>
gemExp += (int)gem.Gems;
}
gemExp = Math.min(gemExp, 250) * 3;
gemExp = Math.min(gemExp, 250) * 5;
//Game Time = 1 Exp per 3 Seconds
double timeExp = (System.currentTimeMillis() - _startTime)/2000d;
double timeExp = (System.currentTimeMillis() - _startTime)/1500d;
//Mult
double mult = 1;