"Fall of France" crash

After a bit of investigation I was able to fix my Fall of France crash by commenting line 404 of ScriptEuro1940.lua

Code:
-- city::SetNumRealBuilding(COURTHOUSE, 1)

I also tried

Code:
if city::CanConstruct(COURTHOUSE, 0, 1) then
        city::SetNumRealBuilding(COURTHOUSE, 1)
end

but that didn't help.

Maybe the COURTHOUSE constant is not being properly defined? Either way I was able to build the courthouses manually and continue the game.

Thanks
 
Thanks benjreev, that could help.

The courthouse is not for Paris, but for all Vichy's cities, I'll have a look at another workaround.
 
Top Bottom