We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1bd09d commit b48b43dCopy full SHA for b48b43d
src/domination/DominationPlugin.java
@@ -19,7 +19,7 @@
19
public class DominationPlugin extends Plugin {
20
21
private static final int CORE_PER_SECOND = 1;
22
- private static final int POINT_TO_WIN = 300_000;
+ private static final int POINT_TO_WIN = 100_000;
23
24
private static final ConcurrentHashMap<Team, Integer> teamPoints = new ConcurrentHashMap<>();
25
@@ -49,7 +49,7 @@ private void addPoint() {
49
}
50
51
for (var core : team.cores()) {
52
- int points = core.block.size * CORE_PER_SECOND;
+ int points = (core.block.size - 3) * CORE_PER_SECOND;
53
int newPoint = teamPoints.getOrDefault(team, 0) + points;
54
teamPoints.put(team, newPoint);
55
0 commit comments