mirror of https://github.com/OpenTTD/OpenTTD
(svn r21369) -Fix: don't add object specs that weren't associate with graphics
parent
654f475983
commit
6f549e54b5
|
@ -7642,7 +7642,7 @@ static void FinaliseObjectsArray()
|
||||||
ObjectSpec **&objectspec = (*file)->objectspec;
|
ObjectSpec **&objectspec = (*file)->objectspec;
|
||||||
if (objectspec != NULL) {
|
if (objectspec != NULL) {
|
||||||
for (int i = 0; i < NUM_OBJECTS; i++) {
|
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]);
|
_object_mngr.SetEntitySpec(objectspec[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue