Reformatted, and ported back some enhancements from the Forge version.

This commit is contained in:
Sebastian Hartte
2020-08-15 02:51:03 +02:00
parent 0a2f03aa92
commit 6c544f2211
358 changed files with 1124 additions and 1831 deletions
+2 -6
View File
@@ -41,14 +41,10 @@ public class Splotch {
if (side == Direction.SOUTH || side == Direction.NORTH) {
x = position.x;
y = position.y;
}
else if (side == Direction.UP || side == Direction.DOWN) {
} else if (side == Direction.UP || side == Direction.DOWN) {
x = position.x;
y = position.z;
}
else {
} else {
x = position.y;
y = position.z;
}