fix a http SRestObjReq log message, thx Tampa (also a libomv update)

This commit is contained in:
UbitUmarov
2022-04-14 22:28:02 +01:00
parent 37ab7afed9
commit d0d71317e0
3 changed files with 4 additions and 7 deletions

View File

@@ -287,14 +287,12 @@ namespace OpenSim.Region.PhysicsModules.SharedBase
/// <param name="retMethod">Method to call when the raycast is complete</param>
public virtual void RaycastWorld(Vector3 position, Vector3 direction, float length, RaycastCallback retMethod)
{
if (retMethod != null)
retMethod(false, Vector3.Zero, 0, 999999999999f, Vector3.Zero);
retMethod?.Invoke(false, Vector3.Zero, 0, 999999999999f, Vector3.Zero);
}
public virtual void RaycastWorld(Vector3 position, Vector3 direction, float length, int Count, RayCallback retMethod)
{
if (retMethod != null)
retMethod(new List<ContactResult>());
retMethod?.Invoke(new List<ContactResult>());
}
public virtual List<ContactResult> RaycastWorld(Vector3 position, Vector3 direction, float length, int Count)