1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

[Client] Don't automatically rescale objects on cell change

This commit is contained in:
David Cernat 2017-02-22 04:21:25 +02:00
parent e4ae8c5f9f
commit 67b67ce1c4

View file

@ -311,7 +311,11 @@ namespace MWWorld
// ... then references. This is important for adjustPosition to work correctly.
/// \todo rescale depending on the state of a new GMST
insertCell (*cell, true, loadingListener);
// Minor change done by tes3mp:
// Instead of always rescaling objects as in the original code, never rescale them
insertCell(*cell, false, loadingListener);
mRendering.addCell(cell);
bool waterEnabled = cell->getCell()->hasWater() || cell->isExterior();