forked from mirror/openmw-tes3mp
[Client] Fix code style
This commit is contained in:
parent
c5035cd174
commit
42b6a456f0
1 changed files with 2 additions and 2 deletions
|
@ -914,7 +914,7 @@ void LocalPlayer::setSpellbook()
|
|||
MWMechanics::Spells &ptrSpells = ptrPlayer.getClass().getCreatureStats(ptrPlayer).getSpells();
|
||||
|
||||
// Clear spells in spellbook, while ignoring abilities, powers, etc.
|
||||
while(true)
|
||||
while (true)
|
||||
{
|
||||
MWMechanics::Spells::TIterator iter = ptrSpells.begin();
|
||||
for (; iter != ptrSpells.end(); iter++)
|
||||
|
@ -926,7 +926,7 @@ void LocalPlayer::setSpellbook()
|
|||
break;
|
||||
}
|
||||
}
|
||||
if(iter == ptrSpells.end())
|
||||
if (iter == ptrSpells.end())
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue