aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/3Di/RegionProxy
diff options
context:
space:
mode:
Diffstat (limited to 'ThirdParty/3Di/RegionProxy')
-rw-r--r--ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs
index a3108f6..7eefcf5 100644
--- a/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs
+++ b/ThirdParty/3Di/RegionProxy/RegionProxyPlugin.cs
@@ -404,7 +404,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy
404 { 404 {
405 try 405 try
406 { 406 {
407 client = PacketPool.DecodeProxyMessage(buffer, ref numBytes); 407 client = ProxyCodec.DecodeProxyMessage(buffer, ref numBytes);
408 try 408 try
409 { 409 {
410 // This message comes from a region object, forward it to the its client 410 // This message comes from a region object, forward it to the its client
@@ -432,7 +432,7 @@ namespace OpenSim.ApplicationPlugins.RegionProxy
432 else 432 else
433 { 433 {
434 // This message comes from a client object, forward it to the the region(s) 434 // This message comes from a client object, forward it to the the region(s)
435 PacketPool.EncodeProxyMessage(buffer, ref numBytes, senderEP); 435 ProxyCodec.EncodeProxyMessage(buffer, ref numBytes, senderEP);
436 ProxyMap.RegionData rd = proxy_map.GetRegionData(sd.clientEP); 436 ProxyMap.RegionData rd = proxy_map.GetRegionData(sd.clientEP);
437 foreach (EndPoint region in rd.regions) 437 foreach (EndPoint region in rd.regions)
438 { 438 {