(svn r21369) -Fix: don't add object specs that weren't associate with graphics

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
rubidium 14 years ago
parent 654f475983
commit 6f549e54b5

@ -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]);
}
}

Loading…
Cancel
Save