Skip to content

Commit 0b3d7b9

Browse files
committed
Surround addition with parentheses, fix #24
1 parent 6c26817 commit 0b3d7b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/rtm-patches/jp/ngt/rtm/entity/train/EntityBogie.java.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
int i = 0;
3232
if (frontBogie != null && this.prevPosIndex != -1) {
3333
- int j = (int)((speed + 0.25F) * 32.0F);
34-
+ int j = (int)(Math.abs(speed) + 0.25F * SPLITS_PER_METER);
34+
+ int j = (int)((Math.abs(speed) + 0.25F) * SPLITS_PER_METER);
3535
int k = this.prevPosIndex - j;
3636
int l = this.prevPosIndex + j;
3737
int i1 = k < 0 ? 0 : k;

0 commit comments

Comments
 (0)