mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
clean some spurius chars and a few other things. Thanks Vincent Sylvester
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -2367,7 +2367,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
}
|
||||
|
||||
NotecardCache.Cache(assetID, a.Data);
|
||||
};
|
||||
}
|
||||
|
||||
return assetID;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user