1
0

Added braces to 'if' according to the code guidelines

This commit is contained in:
gushromp 2014-12-15 18:41:47 +01:00
parent 4e5d2c36e9
commit b9977a39c3

View File

@ -1606,7 +1606,9 @@ bool cPlayer::DoMoveToWorld(cWorld * a_World, bool a_ShouldSendRespawn)
// Send current weather of target world to player
if (a_World->GetDimension() == dimOverworld)
{
m_ClientHandle->SendWeather(a_World->GetWeather());
}
return true;
}