1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-21 09:09:41 +00:00

Fix a copy&paste mistake leaving start rotation uninitialized

This commit is contained in:
scrawl 2014-02-28 17:23:58 +01:00
parent 0926501717
commit a99aa15d14

View file

@ -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);
}