Skip to content

Commit

Permalink
fix derp with AO values
Browse files Browse the repository at this point in the history
  • Loading branch information
octarine-noise committed Mar 9, 2015
1 parent 5ddfef9 commit bad7f85
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,10 @@ protected void renderStandardBlockAsItem(RenderBlocks renderer, Block p_147800_1
protected void setShadingForFace(ForgeDirection dir) {
if (dir == ForgeDirection.DOWN) {
// dir1 WEST, dir2 NORTH
faceAOPP = aoYNXZPP; faceAOPN = aoYNXZPN; faceAONN = aoYNXZNN; faceAONP = aoYNXZNP;
faceAOPP = aoYNXZNN; faceAOPN = aoYNXZNP; faceAONN = aoYNXZPP; faceAONP = aoYNXZPN;
} else if (dir == ForgeDirection.UP) {
// dir1 WEST, dir2 SOUTH
faceAOPP = aoYPXZPP; faceAOPN = aoYPXZPN; faceAONN = aoYPXZNN; faceAONP = aoYPXZNP;
faceAOPP = aoYPXZNP; faceAOPN = aoYPXZNN; faceAONN = aoYPXZPN; faceAONP = aoYPXZPP;
} else if (dir == ForgeDirection.NORTH) {
// dir1 WEST, dir2 UP
faceAOPP = aoZNXYNP; faceAOPN = aoZNXYNN; faceAONN = aoZNXYPN; faceAONP = aoZNXYPP;
Expand Down

0 comments on commit bad7f85

Please sign in to comment.