add some missing default group owner powers on xmlrpc groups module

plus more dotnet6 code style changes
This commit is contained in:
UbitUmarov
2022-10-28 20:06:45 +01:00
parent 496deb92d4
commit aa572df663
12 changed files with 806 additions and 961 deletions

View File

@@ -749,7 +749,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
LLUDPClient udpcli = this;
ThrottleOutPacketTypeFlags cats = categories;
Action<LLUDPClient, ThrottleOutPacketTypeFlags> act = delegate
void act(LLUDPClient arg1, ThrottleOutPacketTypeFlags arg2)
{
QueueEmpty callback = udpcli.OnQueueEmpty;
if (callback != null)
@@ -763,7 +763,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
udpcli.QueueEmptyRunning = false;
udpcli = null;
callback = null;
};
}
m_udpServer.OqrEngine.QueueJob(AgentID.ToString(), () => act(udpcli, cats));
}