removed forgotten debug output

This commit is contained in:
Evenprime 2011-04-04 15:04:45 +02:00
parent b702801d2b
commit 18a46a996c
2 changed files with 8 additions and 11 deletions

View File

@ -119,7 +119,7 @@ public class NoCheatConfiguration {
private Action[] stringToActions(String string, Action[] def) {
if(string == null) return def;
System.out.println(string);
List<Action> as = new LinkedList<Action>();
String[] parts = string.split(" ");

View File

@ -435,9 +435,6 @@ public class MovingCheck extends Check {
event.setTo(data.movingSetBackPoint.clone());
event.getPlayer().teleport(data.movingSetBackPoint.clone());
event.setCancelled(true);
}