
Departure Board not supposed to be used with multiple station?
Closed this issue ยท 2 comments
Version:
- Minecraft Version: 1.21.1
- Forge Version 21.1.192
- Mod Version 1.21.1 - beta - 0.8.4
Describe the bug
From what I understand, a departure board is used to display all trains leaving from all platforms of a train station. This means multiple display links will need to be used to gather data from each train station block. However, instead of displaying each platform as it should be, it instead flashes between each platform, since the display link updates at different times. The result is a flashy board displaying each platforms departure for only a split second, instead of actually showing all the departures.
To Reproduce
Steps to reproduce the behavior:
- Setup standard create station with multiple platforms
- Setup a departure board
- Link the stations to the departure board with display link for each station block
- Get a useless flashy board that u cannot read
Expected behavior
Display all train data of all platforms in 1 go, no flashing overriding data.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
You need only one display link on one of the platform stations. You need to set the station name filter when right clicking the display link. For example Main Station *
which will match all stations starting with Main Station, then name each platform something like Main Station 1
, etc. It will pull data from the other platforms without more display links needed.