Do case-insensitive comparisons on region names in LLStandaloneLoginModule
parent
ac7ccdf7d7
commit
ff4b45a1e3
|
@ -286,7 +286,7 @@ namespace OpenSim.Client.Linden
|
|||
{
|
||||
foreach (Scene nextScene in m_scenes)
|
||||
{
|
||||
if (nextScene.RegionInfo.RegionName == regionName)
|
||||
if (nextScene.RegionInfo.RegionName.Equals(regionName, StringComparison.InvariantCultureIgnoreCase))
|
||||
{
|
||||
scene = nextScene;
|
||||
return true;
|
||||
|
|
|
@ -2707,12 +2707,12 @@ namespace OpenSim.Region.Physics.OdePlugin
|
|||
{
|
||||
if (prim.m_taintremove)
|
||||
{
|
||||
//Console.WriteLine("Simulate calls RemovePrimThreadLocked");
|
||||
//Console.WriteLine("Simulate calls RemovePrimThreadLocked");
|
||||
RemovePrimThreadLocked(prim);
|
||||
}
|
||||
else
|
||||
{
|
||||
//Console.WriteLine("Simulate calls ProcessTaints");
|
||||
//Console.WriteLine("Simulate calls ProcessTaints");
|
||||
prim.ProcessTaints(timeStep);
|
||||
}
|
||||
processedtaints = true;
|
||||
|
|
Loading…
Reference in New Issue