2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix race condition on first time uses of Er'cana/Ahnonay books.

Some of the Python code expects for explicit Age initialization to
complete immediately. Rewriting that would be something of a chore, so
this will prevent first time clicks on the Er'cana and Ahnoying
Cathedral books from causing a perma-stick.

Homologue of H'uru commit ec0aecd202
This commit is contained in:
2021-08-10 18:56:40 -04:00
parent 2b8c81ee2a
commit b1eda42289

View File

@ -556,7 +556,7 @@ void pyVault::RegisterMTStation( const char * stationName, const char * backLink
void pyVault::RegisterOwnedAge( const pyAgeLinkStruct & link )
{
VaultRegisterOwnedAge(link.GetAgeLink());
VaultRegisterOwnedAgeAndWait(link.GetAgeLink());
}
void pyVault::UnRegisterOwnedAge( const char * ageFilename )