This is handy and I missed it

This commit is contained in:
Cinder Roxley
2024-08-30 11:36:48 -05:00
parent 7cb36743cf
commit 787a5ea38e

View File

@@ -933,6 +933,19 @@ namespace OpenMetaverse
return null;
}
public Simulator FindSimulator(ulong handle)
{
lock (Simulators)
{
foreach (var t in Simulators.Where(t => t.Handle == handle))
{
return t;
}
}
return null;
}
internal void RaisePacketSentEvent(byte[] data, int bytesSent, Simulator simulator)
{