FIRE-35794: Tidy messaging

master
Angeldark Raymaker 2025-09-26 21:26:07 +01:00
parent 695fb54614
commit d1dbdd0ae1
1 changed files with 0 additions and 3 deletions

View File

@ -357,7 +357,6 @@ class FSJointPose
if (rotation == LLQuaternion::DEFAULT)
return;
LL_WARNS("Posing") << "Loaded rot: " << rotation << " at priority " << priority << LL_ENDL;
mBasePriority = priority;
mBaseRotation.set(rotation);
}
@ -367,7 +366,6 @@ class FSJointPose
if (priority < mBasePriority)
return;
LL_WARNS("Posing") << "Loaded pos: " << position << " at priority " << priority << LL_ENDL;
mBasePriority = priority;
mBasePosition.set(position);
}
@ -380,7 +378,6 @@ class FSJointPose
if (scale.isExactlyZero())
return;
LL_WARNS("Posing") << "Loaded pos: " << scale << " at priority " << priority << LL_ENDL;
mBasePriority = priority;
mBaseScale.set(scale);
}