mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
add some missing default group owner powers on xmlrpc groups module
plus more dotnet6 code style changes
This commit is contained in:
@@ -883,13 +883,10 @@ namespace OpenSim.Region.CoreModules.Avatar.UserProfiles
|
||||
/// </param>
|
||||
public void PicksRequest(Object sender, string method, List<String> args)
|
||||
{
|
||||
if (!(sender is IClientAPI))
|
||||
if (sender is not IClientAPI remoteClient)
|
||||
return;
|
||||
|
||||
IClientAPI remoteClient = (IClientAPI)sender;
|
||||
|
||||
UUID targetId;
|
||||
if(!UUID.TryParse(args[0], out targetId))
|
||||
if(!UUID.TryParse(args[0], out UUID targetId))
|
||||
return;
|
||||
|
||||
Dictionary<UUID, string> picks = new Dictionary<UUID, string>();
|
||||
|
||||
Reference in New Issue
Block a user