Skip to content

Commit

Permalink
Fixed a bug where RailBlock was 0.0625m taller
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai-Z-JP committed Jun 6, 2021
1 parent 3a51a3b commit 8063eef
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 @@ -193,7 +193,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);
fa[i] += (float) (height - (double) y + h2 - 0.0625);
}
return fa;
}
Expand Down

0 comments on commit 8063eef

Please sign in to comment.