Remove unused debug messages

This commit is contained in:
Thanos Paravantis 2016-07-13 19:29:48 +03:00
parent 6c11b718af
commit 3497a4c095
6 changed files with 0 additions and 10 deletions

View File

@ -470,8 +470,6 @@ public class BawkBawkBattles extends TeamGame implements IThrown
{
for (Player player : GetPlayers(false))
{
System.out.println("Resetting: " + player.getName());
if (_lives.get(player) > 0)
{
Manager.Clear(player);

View File

@ -57,7 +57,6 @@ public class ChallengeList
{
if (challenge.getName().contains(name))
{
System.out.println("Restricted: " + challenge.getName());
_restricted = challenge;
return true;
}

View File

@ -144,7 +144,6 @@ public class ChallengeBuildRace extends Challenge implements LogicTracker
if (!Data.isModifiedBlock(block.getRelative(BlockFace.DOWN)))
{
System.out.println("Cancel");
event.setCancelled(true);
return;
}

View File

@ -102,10 +102,6 @@ public class ChallengeCloudFall extends Challenge
Block below = player.getLocation().getBlock().getRelative(BlockFace.DOWN);
System.out.println(player.getName());
System.out.println("Below: " + below.getY());
System.out.println("Height: " + ((int) getCenter().getY() + LANDING_PLATFORMS_HEIGHT));
if (below.getY() == (int) getCenter().getY() + LANDING_PLATFORMS_HEIGHT)
{
if (below.isEmpty())

View File

@ -149,7 +149,6 @@ public class ChallengeLavaRun extends Challenge
_modifiedDelay += _modifiedDelayMin;
}
System.out.println("Delay: " + _modifiedDelay);
_disappearingBlocks++;
_shouldMoveObsidian = false;
}

View File

@ -183,7 +183,6 @@ public class ChallengeWaveCrush extends Challenge implements NumberTracker
{
if (Data.isLost(player) && _survivedWaves.get(player) > 0)
{
System.out.println("Subtracting from " + player.getName());
_survivedWaves.put(player, _survivedWaves.get(player) - 1);
}
}