Change some values around

This commit is contained in:
Sam 2018-03-05 21:04:09 +00:00 committed by Alexander Meech
parent 92b51c6e43
commit 81c690aeb2
2 changed files with 2 additions and 2 deletions

View File

@ -583,7 +583,7 @@ public class CakeWars extends TeamGame
@Override
public double GetKillsGems(Player killer, Player killed, boolean assist)
{
if (getDeathsInLastMinute(killed) > 2)
if (getDeathsInLastMinute(killed) > 1)
{
return 0;
}

View File

@ -286,7 +286,7 @@ public class CakePlayerModule extends CakeModule
{
Player player = event.GetPlayer();
_game.getArcadeManager().runSyncLater(() -> player.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, (6 + _game.getDeathsInLastMinute(player) * 2) * 20, 0)), 5);
_game.getArcadeManager().runSyncLater(() -> player.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, (4 + _game.getDeathsInLastMinute(player) * 2) * 20, 0)), 5);
}
@EventHandler