1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 00:49:11 +00:00

Fix cdb3dd049: GOAL chunk was not using the header for loading (#9409)

This commit is contained in:
Loïc Guilloux
2021-07-03 18:26:24 +02:00
committed by GitHub
parent d38ad7d80c
commit 0fa2007560

View File

@@ -42,7 +42,7 @@ static void Load_GOAL()
int index;
while ((index = SlIterateArray()) != -1) {
Goal *s = new (index) Goal();
SlObject(s, _goals_desc);
SlObject(s, slt);
}
}