diff options
Diffstat (limited to 'src/newgrf.cpp')
-rw-r--r-- | src/newgrf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index fb8f8f331..5e6622ac0 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -7642,7 +7642,7 @@ static void FinaliseObjectsArray() ObjectSpec **&objectspec = (*file)->objectspec; if (objectspec != NULL) { for (int i = 0; i < NUM_OBJECTS; i++) { - if (objectspec[i] != NULL && objectspec[i]->enabled) { + if (objectspec[i] != NULL && objectspec[i]->grf_prop.grffile != NULL && objectspec[i]->enabled) { _object_mngr.SetEntitySpec(objectspec[i]); } } |