Compare commits

..

2 Commits

Author SHA1 Message Date
UbitUmarov
6ed9b246cf fix typos 2026-07-07 19:59:13 +01:00
UbitUmarov
ff2d47b1a3 fix another typos 2026-07-07 19:41:14 +01:00
5 changed files with 5 additions and 5 deletions

View File

@@ -216,7 +216,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Chat
if(!m_scenes.Contains(scene))
{
m_log.WarnFormat("[CHAT]: message from unkown scene {0} ignored",
m_log.WarnFormat("[CHAT]: message from unknown scene {0} ignored",
scene.RegionInfo.RegionName);
return;
}

View File

@@ -530,7 +530,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
break;
default:
// unkown map item type
// Unknown map item type
m_log.DebugFormat("[WORLD MAP]: Unknown MapItem type {0}", itemtype);
break;
}

View File

@@ -318,7 +318,7 @@ namespace OpenSim.Region.Framework.Scenes
protected Vector3 m_acceleration;
protected Vector3 m_angularVelocity;
//unkown if this will be kept, added as a way of removing the group position from the group class
//Unknown if this will be kept, added as a way of removing the group position from the group class
protected Vector3 m_groupPosition;
protected Material m_material = OpenMetaverse.Material.Wood;
protected Vector3 m_offsetPosition;

View File

@@ -83,7 +83,7 @@ namespace OpenSim.Server.Handlers.Presence
if (request.TryGetValue("UserID", out object uo) && uo is string user)
m_log.Debug($"[PRESENCE HANDLER]: ilegal login try from {httpRequest.RemoteIPEndPoint} for userID {user}");
else
m_log.Debug($"[PRESENCE HANDLER]: ilegal login try from {httpRequest.RemoteIPEndPoint} for unkown user");
m_log.Debug($"[PRESENCE HANDLER]: ilegal login try from {httpRequest.RemoteIPEndPoint} for unknown user");
return FailureResult();
}

View File

@@ -346,7 +346,7 @@ namespace OpenSim.Services.Connectors
sendData["LastName"] = last;
sendData["Password"] = password;
if (!string.IsNullOrEmpty(email))
sendData["Email"] = first;
sendData["Email"] = email;
sendData["ScopeID"] = scopeID.ToString();
return SendAndGetReply(sendData);