Compare commits

..

3 Commits

Author SHA1 Message Date
UbitUmarov
ff2d47b1a3 fix another typos 2026-07-07 19:41:14 +01:00
Ubit Umarov
b581699065 Merge pull request #47 from holoneon/patch-5
Update CombatModule.cs - typo
2026-07-07 18:54:00 +01:00
Fiona Sweet
ee20e48097 Update CombatModule.cs - typoe
Unkown -> Unknown
2026-07-07 08:12:56 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -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("Unknown"))
if (string.IsNullOrEmpty(ud.FirstName) || ud.FirstName.Equals("Unkown"))
continue;
string fullname = ud.FirstName + " " + ud.LastName;

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);