Skip to content

Commit

Permalink
fix: add missing CubeFace used by Scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy0000 committed Aug 9, 2024
1 parent 261d110 commit 8f4b9b4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion api/src/main/java/team/unnamed/creative/base/CubeFace.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,15 @@ public enum CubeFace {
*
* @since 1.0.0
*/
SOUTH(Axis3D.Z, 1);
SOUTH(Axis3D.Z, 1),

/**
* The bottom face. It faces the negative Y direction.
* Only applicable to block/scaffolding_unstable
*
* @since 1.7.4
*/
BOTTOM(Axis3D.Y, -1);

private final Axis3D axis;
private final int factor;
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=team.unnamed
version=1.7.3
version=1.7.4
description=A resource-pack library for Minecraft: Java Edition.
repositoryName=ossrh
snapshotRepository=https\://s01.oss.sonatype.org/content/repositories/snapshots/
Expand Down

0 comments on commit 8f4b9b4

Please sign in to comment.