diff options
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Interfaces/IPresenceService.cs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/OpenSim/Services/Interfaces/IPresenceService.cs b/OpenSim/Services/Interfaces/IPresenceService.cs index 9687d22..abbae2c 100644 --- a/OpenSim/Services/Interfaces/IPresenceService.cs +++ b/OpenSim/Services/Interfaces/IPresenceService.cs | |||
@@ -55,10 +55,6 @@ namespace OpenSim.Services.Interfaces | |||
55 | UserID = kvp["UserID"].ToString(); | 55 | UserID = kvp["UserID"].ToString(); |
56 | if (kvp.ContainsKey("RegionID")) | 56 | if (kvp.ContainsKey("RegionID")) |
57 | UUID.TryParse(kvp["RegionID"].ToString(), out RegionID); | 57 | UUID.TryParse(kvp["RegionID"].ToString(), out RegionID); |
58 | if (kvp.ContainsKey("lookAt")) | ||
59 | Vector3.TryParse(kvp["lookAt"].ToString(), out LookAt); | ||
60 | if (kvp.ContainsKey("position")) | ||
61 | Vector3.TryParse(kvp["position"].ToString(), out Position); | ||
62 | } | 58 | } |
63 | 59 | ||
64 | public Dictionary<string, object> ToKeyValuePairs() | 60 | public Dictionary<string, object> ToKeyValuePairs() |
@@ -66,8 +62,6 @@ namespace OpenSim.Services.Interfaces | |||
66 | Dictionary<string, object> result = new Dictionary<string, object>(); | 62 | Dictionary<string, object> result = new Dictionary<string, object>(); |
67 | result["UserID"] = UserID; | 63 | result["UserID"] = UserID; |
68 | result["RegionID"] = RegionID.ToString(); | 64 | result["RegionID"] = RegionID.ToString(); |
69 | result["position"] = Position.ToString(); | ||
70 | result["lookAt"] = LookAt.ToString(); | ||
71 | 65 | ||
72 | return result; | 66 | return result; |
73 | } | 67 | } |