aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/IClientAPI.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-09-30 14:42:25 +0000
committerAdam Frisby2008-09-30 14:42:25 +0000
commitd4c17512855c4fcf3bb76b8ad45e0de190687a90 (patch)
treed29107ed3706ed19fb0ca0f5e5cac11511dbffe9 /OpenSim/Framework/IClientAPI.cs
parentAllow create-region to load files from arbitrary locations (diff)
downloadopensim-SC_OLD-d4c17512855c4fcf3bb76b8ad45e0de190687a90.zip
opensim-SC_OLD-d4c17512855c4fcf3bb76b8ad45e0de190687a90.tar.gz
opensim-SC_OLD-d4c17512855c4fcf3bb76b8ad45e0de190687a90.tar.bz2
opensim-SC_OLD-d4c17512855c4fcf3bb76b8ad45e0de190687a90.tar.xz
* Fixed minor issue while building: If you do a raytraced object placement and a target isn't found, the object is rezzed at 0,0,0 - instead now it will place according to the position sent by the client.
* We may instead want to abort and send a "Cannot Rez Here" message?
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/IClientAPI.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 1c38011..ddd1cd3 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -342,8 +342,6 @@ namespace OpenSim.Framework
342 /// <summary> 342 /// <summary>
343 /// Returns the full name of the agent/avatar represented by this client 343 /// Returns the full name of the agent/avatar represented by this client
344 /// </summary> 344 /// </summary>
345 /// <param name="newPack"></param>
346 /// <param name="packType"></param>
347 string Name { get; } 345 string Name { get; }
348 346
349 bool IsActive 347 bool IsActive
@@ -750,6 +748,7 @@ namespace OpenSim.Framework
750 748
751 void SendLogoutPacket(); 749 void SendLogoutPacket();
752 ClientInfo GetClientInfo(); 750 ClientInfo GetClientInfo();
751
753 void SetClientInfo(ClientInfo info); 752 void SetClientInfo(ClientInfo info);
754 void SetClientOption(string option, string value); 753 void SetClientOption(string option, string value);
755 string GetClientOption(string option); 754 string GetClientOption(string option);