9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-29 03:59:06 +00:00

Fixed Strongholds not generating in 1.17

- Fixed Strongholds not generating in 1.17
- Made 9 strongholds now generate by default

Dev note: Tile entities are not placing correctly in jigsaws when generating (manual placement is fine)
This commit is contained in:
StrangeOne101
2021-07-06 15:50:04 +12:00
parent 54c7f896ad
commit 48e4fd8088
3 changed files with 138 additions and 69 deletions

View File

@@ -57,4 +57,9 @@ public class IrisPosition
public IrisPosition copy() {
return new IrisPosition(x,y,z);
}
@Override
public String toString() {
return "[" + getX() + "," + getY() + "," + getZ() + "]";
}
}