Change: [NewGRF] Remove airport tile ID hole at 0xFF

Airport tiles have no special values that need to be avoided.
This commit is contained in:
Peter Nelson
2026-08-18 21:13:28 +01:00
committed by Peter Nelson
parent 1b1a16c53b
commit c3ee8ac11b
-2
View File
@@ -278,8 +278,6 @@ public:
struct AirportTileSpec;
class AirportTileOverrideManager : public OverrideManagerBase {
protected:
bool CheckValidNewID(uint16_t testid) override { return testid != 0xFF; }
public:
AirportTileOverrideManager(uint16_t offset, uint16_t maximum, uint16_t invalid) :
OverrideManagerBase(offset, maximum, invalid) {}