diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 558f108c6c..1fdcfd260f 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs @@ -772,7 +772,8 @@ namespace OpenSim.Region.Framework.Scenes List presences = GetScenePresences(); foreach (ScenePresence presence in presences) { - if (presence.Firstname == firstName && presence.Lastname == lastName) + if (string.Equals(presence.Firstname, firstName, StringComparison.CurrentCultureIgnoreCase) + && string.Equals(presence.Lastname, lastName, StringComparison.CurrentCultureIgnoreCase)) return presence; } return null;