Skip to content

Commit

Permalink
Update system property names in OraxenBlock.java for correct references.
Browse files Browse the repository at this point in the history
  • Loading branch information
Naimadx123 committed Dec 4, 2024
1 parent a6c0fb4 commit c76dec0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ private void init(String id) throws InvalidBlockDataException {
}

private static float getYaw() {
return Float.parseFloat(System.getProperty("customblocks.nexooraxen.yaw", "0"));
return Float.parseFloat(System.getProperty("customblocks.oraxen.yaw", "0"));
}

private static BlockFace getBlockFace() {
return BlockFace.valueOf(System.getProperty("customblocks.nexooraxen.blockface", "DOWN"));
return BlockFace.valueOf(System.getProperty("customblocks.oraxen.blockface", "DOWN"));
}


Expand Down

0 comments on commit c76dec0

Please sign in to comment.