mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-19 16:09:59 +00:00
Fix a copy&paste mistake leaving start rotation uninitialized
This commit is contained in:
parent
0926501717
commit
a99aa15d14
1 changed files with 2 additions and 2 deletions
|
@ -456,7 +456,7 @@ void OMW::Engine::prepareEngine (Settings::Manager & settings)
|
|||
else
|
||||
{
|
||||
pos.pos[0] = pos.pos[1] = pos.pos[2] = 0;
|
||||
pos.rot[0] = pos.rot[1] = pos.pos[2] = 0;
|
||||
pos.rot[0] = pos.rot[1] = pos.rot[2] = 0;
|
||||
world->changeToExteriorCell (pos);
|
||||
}
|
||||
|
||||
|
@ -621,4 +621,4 @@ void OMW::Engine::setActivationDistanceOverride (int distance)
|
|||
void OMW::Engine::setWarningsMode (int mode)
|
||||
{
|
||||
mWarningsMode = mode;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue