some cleanup to last patch from Bill Blight and Vincent (mantis 8738)

This commit is contained in:
UbitUmarov
2020-08-08 18:27:45 +01:00
parent 4eee476423
commit cd5ac2eae9
4 changed files with 11 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
public partial class ScriptBaseClass
{
// SCRIPTS CONSTANTS
public static readonly LSLInteger OS_APIVERSION = 13;
public static readonly LSLInteger OS_APIVERSION = 14;
public static readonly LSLInteger TRUE = 1;
public static readonly LSLInteger FALSE = 0;

View File

@@ -235,12 +235,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
return m_OSSL_Functions.osConsoleCommand(Command);
}
public void osSetParcelMusicURL(string url)
public void osSetParcelMusicURL(LSL_String url)
{
m_OSSL_Functions.osSetParcelMusicURL(url);
}
public void osSetParcelMediaURL(string url)
public void osSetParcelMediaURL(LSL_String url)
{
m_OSSL_Functions.osSetParcelMediaURL(url);
}