diff options
author | MW | 2007-06-09 22:06:39 +0000 |
---|---|---|
committer | MW | 2007-06-09 22:06:39 +0000 |
commit | ed899c30f693138b4f69220b920e5456a9307bee (patch) | |
tree | 56f8df462df0bf0d98fec944985af0e28393620a /OpenSim/OpenSim.World/Avatar.cs | |
parent | * follow up ignore of generated files (diff) | |
download | opensim-SC_OLD-ed899c30f693138b4f69220b920e5456a9307bee.zip opensim-SC_OLD-ed899c30f693138b4f69220b920e5456a9307bee.tar.gz opensim-SC_OLD-ed899c30f693138b4f69220b920e5456a9307bee.tar.bz2 opensim-SC_OLD-ed899c30f693138b4f69220b920e5456a9307bee.tar.xz |
a couple of changes/fixes
Diffstat (limited to 'OpenSim/OpenSim.World/Avatar.cs')
-rw-r--r-- | OpenSim/OpenSim.World/Avatar.cs | 6 |
1 files changed, 3 insertions, 3 deletions
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> |