HDB: Fix crash during initialisation

This commit is contained in:
Eugene Sandulenko 2019-06-23 00:21:35 +02:00
parent 86cc1df32d
commit 0cd1ffc34e

View File

@ -77,12 +77,12 @@ bool HDBGame::init() {
if (!_fileMan->openMPC(getGameFile())) {
error("FileMan::openMPC: Cannot find the hyperspace.mpc data file.");
}
if (!_ai->init()) {
error("AI::init: Couldn't initialize AI");
}
if (!_drawMan->init()) {
error("DrawMan::init: Couldn't initialize DrawMan");
}
if (!_ai->init()) {
error("AI::init: Couldn't initialize AI");
}
if (!_lua->init()) {
error("LuaScript::init: Couldn't load the GLOBAL_LUA code.");
}