We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a30f3e commit da92e51Copy full SHA for da92e51
core/src/main/java/de/bluecolored/bluemap/core/world/mca/data/LevelData.java
@@ -95,12 +95,12 @@ public static class Dimension {
95
public static class Spawn {
96
97
private Key dimension = DataPack.DIMENSION_OVERWORLD;
98
- private Vector3i position = Vector3i.ZERO;
+ private Vector3i pos = Vector3i.ZERO;
99
private float yaw = 0;
100
private float pitch = 0;
101
102
- public Spawn(Vector3i position) {
103
- this.position = position;
+ public Spawn(Vector3i pos) {
+ this.pos = pos;
104
}
105
106
0 commit comments