fix issue where items clustered at the end of belt tiles

This commit is contained in:
2026-04-23 22:03:02 +02:00
parent ea30d2ab7b
commit eba8caac31
2 changed files with 34 additions and 2 deletions

View File

@@ -247,9 +247,9 @@ void BeltSystem::advanceProgress()
}
}
if (bt.back->progress > 1.0)
if (bt.back->progress > 0.5)
{
bt.back->progress = 1.0;
bt.back->progress = 0.5;
}
}
}