Skip to content

Commit

Permalink
fix block rotation using facing=down and facing=up
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakShearman authored and mworzala committed Jan 6, 2024
1 parent aa5fc9f commit 5423471
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/net/hollowcube/schem/CoordinateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,8 @@ private static String rotate90(String in) {
case "north" -> "east";
case "east" -> "south";
case "south" -> "west";
default -> "north";
case "west" -> "north";
default -> in;
};
}

Expand Down

0 comments on commit 5423471

Please sign in to comment.