minor: Remove a few indenting problems introduced to recent 265fe349 and convert the m_log.DebugFormat() call back to the original DetailLog call

mb-throttle-test
Justin Clark-Casey (justincc) 2014-11-29 00:53:13 +00:00
parent dcc36507f3
commit dfab60a7fd
1 changed files with 3 additions and 3 deletions

View File

@ -461,10 +461,10 @@ public sealed class BSCharacter : BSPhysObject
PhysScene.TaintedObject(LocalID, "BSCharacter.setVelocity", delegate()
{
if (m_moveActor != null)
m_moveActor.SetVelocityAndTarget(vel, vel, true /* inTaintTime */);
m_moveActor.SetVelocityAndTarget(vel, vel, true /* inTaintTime */);
m_log.DebugFormat("{0},BSCharacter.setVelocity,taint,vel={1}", LocalID, vel);
ForceVelocity = vel;
DetailLog("{0},BSCharacter.setVelocity,taint,vel={1}", LocalID, vel);
ForceVelocity = vel;
});
}
}