diff options
-rw-r--r-- | OpenSim/Region/Physics/Manager/PhysicsActor.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Physics/Manager/PhysicsActor.cs b/OpenSim/Region/Physics/Manager/PhysicsActor.cs index b96ce27..088d85a 100644 --- a/OpenSim/Region/Physics/Manager/PhysicsActor.cs +++ b/OpenSim/Region/Physics/Manager/PhysicsActor.cs | |||
@@ -138,7 +138,7 @@ namespace OpenSim.Region.Physics.Manager | |||
138 | RequestTerseUpdate handler = OnRequestTerseUpdate; | 138 | RequestTerseUpdate handler = OnRequestTerseUpdate; |
139 | if (handler != null) | 139 | if (handler != null) |
140 | { | 140 | { |
141 | OnRequestTerseUpdate(); | 141 | handler(); |
142 | } | 142 | } |
143 | } | 143 | } |
144 | 144 | ||
@@ -150,7 +150,7 @@ namespace OpenSim.Region.Physics.Manager | |||
150 | OutOfBounds handler = OnOutOfBounds; | 150 | OutOfBounds handler = OnOutOfBounds; |
151 | if (handler != null) | 151 | if (handler != null) |
152 | { | 152 | { |
153 | OnOutOfBounds(pos); | 153 | handler(pos); |
154 | } | 154 | } |
155 | } | 155 | } |
156 | 156 | ||
@@ -159,7 +159,7 @@ namespace OpenSim.Region.Physics.Manager | |||
159 | CollisionUpdate handler = OnCollisionUpdate; | 159 | CollisionUpdate handler = OnCollisionUpdate; |
160 | if (handler != null) | 160 | if (handler != null) |
161 | { | 161 | { |
162 | OnCollisionUpdate(e); | 162 | handler(e); |
163 | } | 163 | } |
164 | } | 164 | } |
165 | 165 | ||