Compare commits
2 commits
30c34d07d0
...
066bae3d90
Author | SHA1 | Date | |
---|---|---|---|
066bae3d90 | |||
4071b5fc21 |
2 changed files with 7 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class Area {
|
|||
n.x=(int)n.x;
|
||||
n.y=(int)n.y;
|
||||
n.z=(int)n.z;
|
||||
return space.contains(c);
|
||||
return space.contains(n);
|
||||
}
|
||||
|
||||
public boolean does_intersect(BoundingBox c){
|
||||
|
|
|
@ -55,6 +55,12 @@ public class TokenSwitchZone implements BaseToken {
|
|||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue