diff options
author | Teravus Ovares | 2007-11-30 16:29:23 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-30 16:29:23 +0000 |
commit | 95c68a316af53368b6463caa1b7219c9f2ac9b65 (patch) | |
tree | f1321bcb41c8499a4542a99a3b02517a64688e9d /OpenSim/Region/Environment/Scenes/InnerScene.cs | |
parent | return of the inv-lib-root patch from Justin Casey (IBM) (diff) | |
download | opensim-SC_OLD-95c68a316af53368b6463caa1b7219c9f2ac9b65.zip opensim-SC_OLD-95c68a316af53368b6463caa1b7219c9f2ac9b65.tar.gz opensim-SC_OLD-95c68a316af53368b6463caa1b7219c9f2ac9b65.tar.bz2 opensim-SC_OLD-95c68a316af53368b6463caa1b7219c9f2ac9b65.tar.xz |
*Refactored the initial raytracer so it doesn't use the Parent reference.
*Fixed a 'statement out of order' error in the setting of the permissions that are sent to the client.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/InnerScene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index 7c13b49..bdcd840 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs | |||
@@ -300,7 +300,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
300 | if (ent is SceneObjectGroup) | 300 | if (ent is SceneObjectGroup) |
301 | { | 301 | { |
302 | SceneObjectGroup reportingG = (SceneObjectGroup)ent; | 302 | SceneObjectGroup reportingG = (SceneObjectGroup)ent; |
303 | EntityIntersection result = reportingG.testIntersection(hray); | 303 | EntityIntersection result = reportingG.TestIntersection(hray); |
304 | if (result.HitTF) | 304 | if (result.HitTF) |
305 | { | 305 | { |
306 | if (result.distance < closestDistance) | 306 | if (result.distance < closestDistance) |