| 341 | } |
| 342 | |
| 343 | bool IsTransporter(uint32_t t) const |
| 344 | { |
| 345 | // Ferry and shuttle have the same processing logic now. |
| 346 | return t == Get(Ferry) || t == Get(ShuttleTrain); |
| 347 | } |
| 348 | |
| 349 | bool IsRailwayStation(uint32_t t) const { return t == Get(RailwayStation); } |
| 350 |
no test coverage detected