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:
parent
96bd21a7ca
commit
34a46e6811
1 changed files with 1 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue