clean some spurius chars and a few other things. Thanks Vincent Sylvester

This commit is contained in:
UbitUmarov
2022-11-12 02:49:01 +00:00
parent 472c243362
commit d9380c9b83
57 changed files with 111 additions and 112 deletions

View File

@@ -5754,7 +5754,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (item is LSL_Integer)
return (LSL_Integer)item;
else if (item is LSL_Float)
return Convert.ToInt32(((LSL_Float)item).value);;
return Convert.ToInt32(((LSL_Float)item).value);
return new LSL_Integer(item.ToString());
}
catch (FormatException)

View File

@@ -343,7 +343,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
if (!m_MODFunctionsEnabled)
{
MODShoutError("Module command functions not enabled");
return UUID.Zero.ToString();;
return UUID.Zero.ToString();
}
UUID req = UUID.Random();

View File

@@ -2367,7 +2367,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
}
NotecardCache.Cache(assetID, a.Data);
};
}
return assetID;
}

View File

@@ -562,7 +562,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public LSL_Key llObjectGetLinkKey(LSL_Key objectid, int linknum)
{
return m_LSL_Functions.llObjectGetLinkKey(objectid, linknum);;
return m_LSL_Functions.llObjectGetLinkKey(objectid, linknum);
}
public LSL_String llGetLinkName(int linknum)