Change Cake Wars knockback back to it's previous value

This commit is contained in:
Sam 2017-12-27 12:38:31 +00:00 committed by Alexander Meech
parent 0657aed11f
commit 0aa1d41bb9
1 changed files with 2 additions and 2 deletions

View File

@ -97,9 +97,9 @@ public class CakeWars extends TeamGame
};
private static final int RESPAWN_TIME = 6;
/**
* This value is the base value of knockback for Cake Wars.
* This value is the base value of knockback for Cake Wars. it is derived from log10(7).
*/
private static final double GAME_KNOCKBACK = 1.05;
private static final double GAME_KNOCKBACK = 0.845;
private static final LeaderboardManager LEADERBOARD_MANAGER = Managers.get(LeaderboardManager.class);
private final Map<GameTeam, Location> _averages;