diff options
author | Robert Adams | 2012-12-11 13:54:26 -0800 |
---|---|---|
committer | Robert Adams | 2012-12-11 13:54:26 -0800 |
commit | d4e0e98c001c3501ac17849ab78e7ac5a59a5c26 (patch) | |
tree | 719a678224bd1a5787222889eeba10675238482f /OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs | |
parent | BulletSim: protect prim property setting to remove crash from taints setting ... (diff) | |
download | opensim-SC_OLD-d4e0e98c001c3501ac17849ab78e7ac5a59a5c26.zip opensim-SC_OLD-d4e0e98c001c3501ac17849ab78e7ac5a59a5c26.tar.gz opensim-SC_OLD-d4e0e98c001c3501ac17849ab78e7ac5a59a5c26.tar.bz2 opensim-SC_OLD-d4e0e98c001c3501ac17849ab78e7ac5a59a5c26.tar.xz |
BulletSim: protect character property setting to remove crash from taints setting properties after the destroy character taint.
Diffstat (limited to 'OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs')
-rw-r--r-- | OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs b/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs index 1280c25..446e44c 100644 --- a/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSPrim.cs | |||
@@ -191,7 +191,8 @@ public sealed class BSPrim : BSPhysObject | |||
191 | } | 191 | } |
192 | } | 192 | } |
193 | public override bool Selected { | 193 | public override bool Selected { |
194 | set { | 194 | set |
195 | { | ||
195 | if (value != _isSelected) | 196 | if (value != _isSelected) |
196 | { | 197 | { |
197 | _isSelected = value; | 198 | _isSelected = value; |