Skip to content

Commit

Permalink
Merge pull request #155 from Kai-Z-JP/fix-rail-block-height
Browse files Browse the repository at this point in the history
[Fix] Incorrect the height of the block where branch rails with different elevations
  • Loading branch information
Kai-Z-JP authored Sep 10, 2021
2 parents 2883333 + a20911d commit 5c6f74f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jp/ngt/rtm/rail/TileEntityLargeRailBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private float[] getBlockHeights(int x, int y, int z, float defaultHeight) {
//レールYawに対するベクトル角により左右位置を判断
boolean dirFlag = MathHelper.wrapAngleTo180_float(yaw2 - yaw) > 0.0F;
double h2 = NGTMath.sin(cant) * len * (dirFlag ? -1.0F : 1.0F);
fa[i] += (float) (height - (double) y + h2 - 0.0625);
fa[i] = (float) (height - (double) y + h2 + defaultHeight - 0.0625);
}
}
}
Expand Down

0 comments on commit 5c6f74f

Please sign in to comment.