adjusted points

This commit is contained in:
LunarAkai 2024-03-24 23:04:38 +01:00
commit 392e55c3b2
2 changed files with 3 additions and 4 deletions

View file

@ -174,11 +174,11 @@ public class MinecleanerManager {
break; break;
} }
case 1: { case 1: {
ps.increaseScore(statisticsPointsAcquired, 3); ps.increaseScore(statisticsPointsAcquired, 5);
break; break;
} }
case 2: { case 2: {
ps.increaseScore(statisticsPointsAcquired, 10); ps.increaseScore(statisticsPointsAcquired, 20);
break; break;
} }
default: { default: {

View file

@ -67,7 +67,6 @@ public class Game {
} }
} }
// Todo selten auch noch mine bei xFirst-1
private void generateMines(int xFirst, int yFirst) { private void generateMines(int xFirst, int yFirst) {
for (int i = 0; i < mineCount; i++) { for (int i = 0; i < mineCount; i++) {
int x = (int) (Math.random() * width); int x = (int) (Math.random() * width);