diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 04e7a1ec28..c3b5120148 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -6095,7 +6095,7 @@ static void SkipIf(ByteReader *buf) case 0x0A: // GRFID is not nor will be active /* This is the only condtype that doesn't get ignored if the GRFID is not found */ - result = c == NULL || c->flags == GCS_DISABLED || c->status == GCS_NOT_FOUND; + result = c == NULL || c->status == GCS_DISABLED || c->status == GCS_NOT_FOUND; break; default: grfmsg(1, "SkipIf: Unsupported GRF condition type %02X. Ignoring", condtype); return;