diff options
author | Jeff Ames | 2009-06-10 04:28:56 +0000 |
---|---|---|
committer | Jeff Ames | 2009-06-10 04:28:56 +0000 |
commit | a23d64dec1cbf88abc3c7e84664a683dee534e4a (patch) | |
tree | 7e85403f29839775209481ba7f6ee55aac56f209 /OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |
parent | Letting the Flotsam cache be enabled even when [AssetCache] section is missin... (diff) | |
download | opensim-SC_OLD-a23d64dec1cbf88abc3c7e84664a683dee534e4a.zip opensim-SC_OLD-a23d64dec1cbf88abc3c7e84664a683dee534e4a.tar.gz opensim-SC_OLD-a23d64dec1cbf88abc3c7e84664a683dee534e4a.tar.bz2 opensim-SC_OLD-a23d64dec1cbf88abc3c7e84664a683dee534e4a.tar.xz |
Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/Physics/OdePlugin/ODECharacter.cs')
-rw-r--r-- | OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs index 6759fd9..3f0d6c1 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODECharacter.cs | |||
@@ -1116,7 +1116,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1116 | m_log.Warn("[PHYSICS]: re-creating the following avatar ODE data, even though it already exists - " | 1116 | m_log.Warn("[PHYSICS]: re-creating the following avatar ODE data, even though it already exists - " |
1117 | + (Shell!=IntPtr.Zero ? "Shell ":"") | 1117 | + (Shell!=IntPtr.Zero ? "Shell ":"") |
1118 | + (Body!=IntPtr.Zero ? "Body ":"") | 1118 | + (Body!=IntPtr.Zero ? "Body ":"") |
1119 | + (Amotor!=IntPtr.Zero ? "Amotor ":"") ); | 1119 | + (Amotor!=IntPtr.Zero ? "Amotor ":"")); |
1120 | } | 1120 | } |
1121 | AvatarGeomAndBodyCreation(_position.X, _position.Y, _position.Z, m_tensor); | 1121 | AvatarGeomAndBodyCreation(_position.X, _position.Y, _position.Z, m_tensor); |
1122 | 1122 | ||
@@ -1182,7 +1182,7 @@ namespace OpenSim.Region.Physics.OdePlugin | |||
1182 | m_log.Warn("[PHYSICS]: trying to change capsule size, but the following ODE data is missing - " | 1182 | m_log.Warn("[PHYSICS]: trying to change capsule size, but the following ODE data is missing - " |
1183 | + (Shell==IntPtr.Zero ? "Shell ":"") | 1183 | + (Shell==IntPtr.Zero ? "Shell ":"") |
1184 | + (Body==IntPtr.Zero ? "Body ":"") | 1184 | + (Body==IntPtr.Zero ? "Body ":"") |
1185 | + (Amotor==IntPtr.Zero ? "Amotor ":"") ); | 1185 | + (Amotor==IntPtr.Zero ? "Amotor ":"")); |
1186 | } | 1186 | } |
1187 | } | 1187 | } |
1188 | 1188 | ||