Reduce the gems for kills and assists a bit more

This commit is contained in:
Sam 2017-11-09 17:45:50 +00:00 committed by Alexander Meech
parent 156c5e11b8
commit 76b43bcb3c

View File

@ -533,7 +533,7 @@ public class CakeWars extends TeamGame
@Override
public double GetKillsGems(Player killer, Player killed, boolean assist)
{
return assist ? 4 : 8;
return assist ? 2 : 6;
}
public Location getAverageLocation(GameTeam team)