We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1422ab4 commit f767d85Copy full SHA for f767d85
src/main/java/com/github/elic0de/thejpspit/spigot/game/Game.java
@@ -55,9 +55,8 @@ public void death(PitPlayer player) {
55
.replaceAll("%vitim%", player.getName())
56
.replaceAll("%streaks%", streaks + "")
57
);
58
- TheJpsPit.getInstance().getEconomyHook().ifPresent(economyHook -> economyHook.giveMoney(player,
59
- BigDecimal.valueOf(streaks * 100)));
60
- killer.sendMessage(streaks * 100 + "の懸賞金をあたえました");
+ TheJpsPit.getInstance().getEconomyHook().ifPresent(economyHook -> economyHook.giveMoney(killer, BigDecimal.valueOf(50)));
+ killer.sendMessage(50 + "JP+");
61
}
62
63
player.increaseDeaths();
0 commit comments