mirror of
https://github.com/opensim/opensim.git
synced 2026-07-09 06:15:41 +08:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ed9b246cf | ||
|
|
ff2d47b1a3 |
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user