mirror of
https://github.com/opensim/opensim.git
synced 2026-07-09 06:15:41 +08:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ed9b246cf | ||
|
|
ff2d47b1a3 | ||
|
|
b581699065 | ||
|
|
a5e5111d4a | ||
|
|
ee20e48097 | ||
|
|
f561c21369 |
@@ -2242,7 +2242,7 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
foreach (UserData ud in names)
|
||||
{
|
||||
// dont tell about unknown users, we can't send them back on Bad either
|
||||
if (string.IsNullOrEmpty(ud.FirstName) || ud.FirstName.Equals("Unkown"))
|
||||
if (string.IsNullOrEmpty(ud.FirstName) || ud.FirstName.Equals("Unknown"))
|
||||
continue;
|
||||
|
||||
string fullname = ud.FirstName + " " + ud.LastName;
|
||||
@@ -2643,4 +2643,4 @@ namespace OpenSim.Region.ClientStack.Linden
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -125,7 +125,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Combat.CombatModule
|
||||
if (killingAvatar == null)
|
||||
{
|
||||
IUserManagement userManager = deadAvatar.Scene.RequestModuleInterface<IUserManagement>();
|
||||
string userName = "Unkown User";
|
||||
string userName = "Unknown User";
|
||||
if (userManager != null)
|
||||
userName = userManager.GetUserName(part.OwnerID);
|
||||
deadAvatarMessage = String.Format("You impaled yourself on {0} owned by {1}!", part.Name, userName);
|
||||
|
||||
@@ -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