mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-09 23:50:25 +00:00
This commit is contained in:
parent
4c0dca1411
commit
5f4f9334ce
@ -180,7 +180,7 @@ public:
|
||||
TrackdirBits dirs = follower.m_new_td_bits;
|
||||
const TrackdirBits dirs_without_90_degree = dirs & ~TrackdirCrossesTrackdirs(dir);
|
||||
if (dirs_without_90_degree != TRACKDIR_BIT_NONE) dirs = dirs_without_90_degree;
|
||||
const int strip_amount = _random.Next(CountBits(dirs));
|
||||
const int strip_amount = RandomRange(CountBits(dirs));
|
||||
for (int s = 0; s < strip_amount; ++s) RemoveFirstTrackdir(&dirs);
|
||||
return { follower.m_new_tile, FindFirstTrackdir(dirs) };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user