1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-01 08:39:40 +00:00

[Client] Simplify hasFinishedCharGen method

This commit is contained in:
Koncord 2017-01-26 21:42:12 +08:00
parent 96bd21a7ca
commit 34a46e6811

View file

@ -148,10 +148,7 @@ bool LocalPlayer::charGenThread()
bool LocalPlayer::hasFinishedCharGen()
{
if (charGenStage.end == 0)
return true;
return false;
return charGenStage.end == 0;
}
void LocalPlayer::updateDynamicStats(bool forceUpdate)