diff options
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.Update.cs | 3 | ||||
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.cs | 6 | ||||
-rw-r--r-- | OpenSim/OpenSim/OpenSimMain.cs | 5 |
3 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/OpenSim.World/Avatar.Update.cs b/OpenSim/OpenSim.World/Avatar.Update.cs index 7a57ba4..c0d120a 100644 --- a/OpenSim/OpenSim.World/Avatar.Update.cs +++ b/OpenSim/OpenSim.World/Avatar.Update.cs | |||
@@ -42,8 +42,7 @@ namespace OpenSim.world | |||
42 | /// </summary> | 42 | /// </summary> |
43 | public void SendInitialPosition() | 43 | public void SendInitialPosition() |
44 | { | 44 | { |
45 | Console.WriteLine("sending initial Avatar data"); | 45 | this.ControllingClient.SendAvatarData(m_regionInfo, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); |
46 | this.ControllingClient.SendAvatarData(m_regInfo, this.firstname, this.lastname, this.uuid, this.localid, new LLVector3(128, 128, 60)); | ||
47 | } | 46 | } |
48 | 47 | ||
49 | /// <summary> | 48 | /// <summary> |
diff --git a/OpenSim/OpenSim.World/Avatar.cs b/OpenSim/OpenSim.World/Avatar.cs index 4ab576c..77e0300 100644 --- a/OpenSim/OpenSim.World/Avatar.cs +++ b/OpenSim/OpenSim.World/Avatar.cs | |||
@@ -35,7 +35,7 @@ namespace OpenSim.world | |||
35 | private Dictionary<uint, IClientAPI> m_clientThreads; | 35 | private Dictionary<uint, IClientAPI> m_clientThreads; |
36 | private bool childAvatar = false; | 36 | private bool childAvatar = false; |
37 | 37 | ||
38 | private RegionInfo m_regInfo; | 38 | protected RegionInfo m_regionInfo; |
39 | /// <summary> | 39 | /// <summary> |
40 | /// | 40 | /// |
41 | /// </summary> | 41 | /// </summary> |
@@ -50,7 +50,7 @@ namespace OpenSim.world | |||
50 | m_clientThreads = clientThreads; | 50 | m_clientThreads = clientThreads; |
51 | this.uuid = theClient.AgentId; | 51 | this.uuid = theClient.AgentId; |
52 | 52 | ||
53 | m_regInfo = reginfo; | 53 | m_regionInfo = reginfo; |
54 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Avatar.cs - Loading details from grid (DUMMY)"); | 54 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Avatar.cs - Loading details from grid (DUMMY)"); |
55 | ControllingClient = theClient; | 55 | ControllingClient = theClient; |
56 | this.firstname = ControllingClient.FirstName; | 56 | this.firstname = ControllingClient.FirstName; |
@@ -144,7 +144,7 @@ namespace OpenSim.world | |||
144 | /// </summary> | 144 | /// </summary> |
145 | public void CompleteMovement() | 145 | public void CompleteMovement() |
146 | { | 146 | { |
147 | this.ControllingClient.MoveAgentIntoRegion(m_regInfo); | 147 | this.ControllingClient.MoveAgentIntoRegion(m_regionInfo); |
148 | } | 148 | } |
149 | 149 | ||
150 | /// <summary> | 150 | /// <summary> |
diff --git a/OpenSim/OpenSim/OpenSimMain.cs b/OpenSim/OpenSim/OpenSimMain.cs index 78dcc8f..53adce9 100644 --- a/OpenSim/OpenSim/OpenSimMain.cs +++ b/OpenSim/OpenSim/OpenSimMain.cs | |||
@@ -103,12 +103,13 @@ namespace OpenSim | |||
103 | this.SetupLocalGridServers(); | 103 | this.SetupLocalGridServers(); |
104 | this.checkServer = new CheckSumServer(12036); | 104 | this.checkServer = new CheckSumServer(12036); |
105 | this.checkServer.ServerListener(); | 105 | this.checkServer.ServerListener(); |
106 | this.commsManager = new RegionServerCommsOGS(); | 106 | this.commsManager = new RegionServerCommsLocal(); |
107 | new RegionServerCommsOGS(); | ||
107 | } | 108 | } |
108 | else | 109 | else |
109 | { | 110 | { |
110 | this.SetupRemoteGridServers(); | 111 | this.SetupRemoteGridServers(); |
111 | this.commsManager = new RegionServerCommsLocal(); | 112 | this.commsManager = new RegionServerCommsOGS(); |
112 | } | 113 | } |
113 | 114 | ||
114 | startuptime = DateTime.Now; | 115 | startuptime = DateTime.Now; |