Skip to content

Commit

Permalink
Merge pull request #1176 from ulteq/mp-angelscript-fix
Browse files Browse the repository at this point in the history
[Bugfix] Fixes Angelscript
  • Loading branch information
ulteq committed Oct 17, 2016
2 parents 53683c1 + b3df555 commit 2b3f51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main/terrain/TerrainManager.cpp
Expand Up @@ -713,7 +713,7 @@ void TerrainManager::initScripting()
bool loaded = false;

// only load terrain scripts while not in multiplayer
if (RoR::App::GetActiveMpState() == RoR::App::MP_STATE_CONNECTED)
if (RoR::App::GetActiveMpState() != RoR::App::MP_STATE_CONNECTED)
{
try
{
Expand Down

0 comments on commit 2b3f51a

Please sign in to comment.