We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1687e3f commit d6ce637Copy full SHA for d6ce637
src/main/java/com/github/elic0de/thejpspit/player/PitPlayer.java
@@ -244,7 +244,10 @@ public void increaseKills() {
244
public void increaseStreaks() {
245
this.streaks ++;
246
247
- if (streaks % 5 == 0) TheJpsPit.getInstance().getGame().streakBroadcast(player.getName() + "&aが連続で&c" + streaks + "&aキルしています!" );
+ if (streaks % 5 == 0) {
248
+ TheJpsPit.getInstance().getCosmeticManager().onStreak(this);
249
+ TheJpsPit.getInstance().getGame().streakBroadcast(player.getName() + "&aが連続で&c" + streaks + "&aキルしています!" );
250
+ }
251
252
if (bestStreaks < streaks) {
253
this.bestStreaks = streaks;
0 commit comments