fix max/min assignment

This commit is contained in:
dfsek
2022-06-09 07:52:02 -07:00
parent dcc6f025a6
commit 1e3cb91ed2

View File

@@ -39,8 +39,8 @@ public class Column<T extends WritableWorld> {
this.x = x;
this.z = z;
this.world = world;
this.max = min;
this.min = max;
this.max = max;
this.min = min;
}
public int getX() {