mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
minor typo
This commit is contained in:
@@ -1079,7 +1079,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
if(setrot)
|
||||
rotation = Quaternion.Conjugate(currentRot) * rotation;
|
||||
|
||||
bool dorot = setrot | (Math.Abs(rotation.W) < 0.99999);
|
||||
bool dorot = setrot || (Math.Abs(rotation.W) < 0.99999);
|
||||
|
||||
Vector3 vel = Vector3.Zero;
|
||||
Vector3 avel = Vector3.Zero;
|
||||
@@ -2480,7 +2480,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
}
|
||||
|
||||
if (m_scene.UseBackup && HasGroupChanged)
|
||||
if (HasGroupChanged && m_scene.UseBackup)
|
||||
{
|
||||
// don't backup while it's selected or you're asking for changes mid stream.
|
||||
if (isTimeToPersist() || forcedBackup)
|
||||
|
||||
Reference in New Issue
Block a user