With the release build, I was able to reproduce the error.
I added these lines to AddOwnersGoalsForCities:
And these lines to AddForiegnersGoelsForCities:
Is this right Martin? I thought it should have been:
Anyways, it did get rid of the crash mrgarofalo posted.
Sadly, I'm now getting the crash I posted in the previous post with the release build.
I added these lines to AddOwnersGoalsForCities:
Code:
if(g_player[ownerId]) return;
Code:
if(g_player[foreignerId]) return;
Code:
if(!g_player[foreignerId]) return;
Sadly, I'm now getting the crash I posted in the previous post with the release build.
Comment