diff options
author | Teravus Ovares | 2007-12-07 23:21:32 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-12-07 23:21:32 +0000 |
commit | 5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e (patch) | |
tree | 33928fb162f8f7bddd26e19f343ec79e2734f7ad /OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |
parent | Enabled the TextureDownloadModule, so that hopefully I might get some feedbac... (diff) | |
download | opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.zip opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.gz opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.bz2 opensim-SC_OLD-5f516c9fb20e8c061f7b634ceeb2b21286dfcd5e.tar.xz |
* All remoting calls are now using Serializable values
* There's still goofyness though, because other regions are denying child agent avatar.
* Still more debugging required.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1GridServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index fa776ed..978111f 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -678,7 +678,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
678 | 678 | ||
679 | if (remObject != null) | 679 | if (remObject != null) |
680 | { | 680 | { |
681 | retValue = remObject.InformRegionOfPrimCrossing(regionHandle,primID, objData); | 681 | retValue = remObject.InformRegionOfPrimCrossing(regionHandle,primID.UUID, objData); |
682 | } | 682 | } |
683 | else | 683 | else |
684 | { | 684 | { |
@@ -751,7 +751,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
751 | "/InterRegions"); | 751 | "/InterRegions"); |
752 | if (remObject != null) | 752 | if (remObject != null) |
753 | { | 753 | { |
754 | retValue = remObject.ExpectAvatarCrossing(regionHandle, agentID, position, isFlying); | 754 | retValue = remObject.ExpectAvatarCrossing(regionHandle, agentID.UUID, new sLLVector3(position), isFlying); |
755 | } | 755 | } |
756 | else | 756 | else |
757 | { | 757 | { |
@@ -797,7 +797,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
797 | "/InterRegions"); | 797 | "/InterRegions"); |
798 | if (remObject != null) | 798 | if (remObject != null) |
799 | { | 799 | { |
800 | retValue = remObject.ExpectAvatarCrossing(regionHandle, agentID, position, isPhysical); | 800 | retValue = remObject.ExpectAvatarCrossing(regionHandle, agentID.UUID, new sLLVector3(position), isPhysical); |
801 | } | 801 | } |
802 | else | 802 | else |
803 | { | 803 | { |