Compare commits

..

No commits in common. "066bae3d905bf24e004f5857f0866b0134597061" and "30c34d07d065bcaa98e9c6e7c9117a0eae85c366" have entirely different histories.

2 changed files with 1 additions and 7 deletions

View file

@ -50,7 +50,7 @@ public class Area {
n.x=(int)n.x; n.x=(int)n.x;
n.y=(int)n.y; n.y=(int)n.y;
n.z=(int)n.z; n.z=(int)n.z;
return space.contains(n); return space.contains(c);
} }
public boolean does_intersect(BoundingBox c){ public boolean does_intersect(BoundingBox c){

View file

@ -55,12 +55,6 @@ public class TokenSwitchZone implements BaseToken {
old.removePlayer(player); old.removePlayer(player);
} }
System.out.println("--------------------------");
System.out.println("Player "+player.getUsername());
System.out.println("Old "+old.zoneId);
System.out.println("New "+zone.zoneId);
System.out.println("--------------------------");
return true; return true;
} }
} }