We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62501ac commit f0f67f1Copy full SHA for f0f67f1
src/main/java/com/github/elic0de/thejpspit/player/PitPlayer.java
@@ -206,7 +206,7 @@ public void increaseKills() {
206
207
public void increaseStreaks() {
208
this.streaks ++;
209
- if (bestStreaks > streaks) {
+ if (bestStreaks < streaks) {
210
this.bestStreaks = streaks;
211
}
212
@@ -221,7 +221,7 @@ public void increaseXP() {
221
222
public void increaseHealth() {
223
player.setHealth(Math.min(player.getAttribute(Attribute.GENERIC_MAX_HEALTH).getValue(),
224
- player.getHealth() + 2));
+ player.getHealth() + 4));
225
226
227
public void resetStreaks() {
0 commit comments