aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/AgentCircuitData.cs
diff options
context:
space:
mode:
authorTeravus Ovares2007-12-07 18:20:34 +0000
committerTeravus Ovares2007-12-07 18:20:34 +0000
commit25ec01311d5c2b96f5ba5e5f1718166009912d18 (patch)
tree61720426c24b1fccdacb318e1f815759193e075d /OpenSim/Framework/AgentCircuitData.cs
parentAvatar Appearance refactoring /changes. Added a AvatarAppearance class, each ... (diff)
downloadopensim-SC_OLD-25ec01311d5c2b96f5ba5e5f1718166009912d18.zip
opensim-SC_OLD-25ec01311d5c2b96f5ba5e5f1718166009912d18.tar.gz
opensim-SC_OLD-25ec01311d5c2b96f5ba5e5f1718166009912d18.tar.bz2
opensim-SC_OLD-25ec01311d5c2b96f5ba5e5f1718166009912d18.tar.xz
* Serialized data properly for the InterRegionSingleton InformRegionChild method
* This isn't really that big of a deal(worth lots of commits) doing this, however I'm doing it in small chunks because I'm multi-tasking.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/AgentCircuitData.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Framework/AgentCircuitData.cs b/OpenSim/Framework/AgentCircuitData.cs
index 2c3a8ba..ddaaaf9 100644
--- a/OpenSim/Framework/AgentCircuitData.cs
+++ b/OpenSim/Framework/AgentCircuitData.cs
@@ -40,7 +40,7 @@ namespace OpenSim.Framework
40 AgentID = new LLUUID(cAgent.AgentID); 40 AgentID = new LLUUID(cAgent.AgentID);
41 SessionID = new LLUUID(cAgent.SessionID); 41 SessionID = new LLUUID(cAgent.SessionID);
42 SecureSessionID = new LLUUID(cAgent.SecureSessionID); 42 SecureSessionID = new LLUUID(cAgent.SecureSessionID);
43 startpos = cAgent.startpos; 43 startpos = new LLVector3(cAgent.startposx,cAgent.startposy,cAgent.startposz);
44 firstname = cAgent.firstname; 44 firstname = cAgent.firstname;
45 lastname = cAgent.lastname; 45 lastname = cAgent.lastname;
46 circuitcode = cAgent.circuitcode; 46 circuitcode = cAgent.circuitcode;
@@ -74,7 +74,9 @@ namespace OpenSim.Framework
74 AgentID = cAgent.AgentID.UUID; 74 AgentID = cAgent.AgentID.UUID;
75 SessionID = cAgent.SessionID.UUID; 75 SessionID = cAgent.SessionID.UUID;
76 SecureSessionID = cAgent.SecureSessionID.UUID; 76 SecureSessionID = cAgent.SecureSessionID.UUID;
77 startpos = cAgent.startpos; 77 startposx = cAgent.startpos.X;
78 startposy = cAgent.startpos.Y;
79 startposz = cAgent.startpos.Z;
78 firstname = cAgent.firstname; 80 firstname = cAgent.firstname;
79 lastname = cAgent.lastname; 81 lastname = cAgent.lastname;
80 circuitcode = cAgent.circuitcode; 82 circuitcode = cAgent.circuitcode;
@@ -86,7 +88,9 @@ namespace OpenSim.Framework
86 public Guid AgentID; 88 public Guid AgentID;
87 public Guid SessionID; 89 public Guid SessionID;
88 public Guid SecureSessionID; 90 public Guid SecureSessionID;
89 public LLVector3 startpos; 91 public float startposx;
92 public float startposy;
93 public float startposz;
90 public string firstname; 94 public string firstname;
91 public string lastname; 95 public string lastname;
92 public uint circuitcode; 96 public uint circuitcode;