added new tournament display

This commit is contained in:
Lars Neuhaus 2024-12-02 15:52:19 +01:00
parent dc24f28b8f
commit ba260519e0
17 changed files with 4 additions and 4 deletions

View File

@ -19,9 +19,9 @@ public class TournamentDisplay extends MineNetInstance implements Spawnable {
private final Tournament tournament;
private final Pos[] placePositions = new Pos[] {
new Pos(8.5, -57, 21.5, 180, 0),
new Pos(9.5, -58, 21.5, 180, 0),
new Pos(7.5, -59, 21.5, 180, 0)
new Pos(8.5, -56, 22.5, 180, 0),
new Pos(12.5, -57, 20.5, 180, 0),
new Pos(4.5, -58, 20.5, 180, 0)
};
public TournamentDisplay(Tournament tournament) {
@ -62,6 +62,6 @@ public class TournamentDisplay extends MineNetInstance implements Spawnable {
@Override
public Pos getSpawn() {
return new Pos(8.5, -55, 8.5);
return new Pos(8.5, -59, 11.5);
}
}