mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
Add llGiveInventory() test from object to object where both objects are owned by the same user.
This commit is contained in:
@@ -73,6 +73,18 @@ namespace OpenSim.Server.Handlers.Login
|
||||
|
||||
if (requestData != null)
|
||||
{
|
||||
foreach (string key in requestData.Keys)
|
||||
{
|
||||
object value = requestData[key];
|
||||
Console.WriteLine("{0}:{1}", key, value);
|
||||
if (value is ArrayList)
|
||||
{
|
||||
ICollection col = value as ICollection;
|
||||
foreach (object item in col)
|
||||
Console.WriteLine(" {0}", item);
|
||||
}
|
||||
}
|
||||
|
||||
if (requestData.ContainsKey("first") && requestData["first"] != null &&
|
||||
requestData.ContainsKey("last") && requestData["last"] != null && (
|
||||
(requestData.ContainsKey("passwd") && requestData["passwd"] != null) ||
|
||||
|
||||
@@ -94,6 +94,5 @@ namespace OpenSim.Server.Handlers.Login
|
||||
server.AddXmlRPCHandler("set_login_level", loginHandlers.HandleXMLRPCSetLoginLevel, false);
|
||||
server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user