mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
revert changeset 4469 as this breaks the script engine.
This commit is contained in:
@@ -1200,17 +1200,11 @@ namespace OpenSim.Region.ScriptEngine.Common
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
static public implicit operator int(LSLInteger i)
|
||||
static public implicit operator Int32(LSLInteger i)
|
||||
{
|
||||
return i.value;
|
||||
}
|
||||
|
||||
static public implicit operator uint(LSLInteger i)
|
||||
{
|
||||
return (uint)i.value;
|
||||
}
|
||||
|
||||
static public explicit operator LSLString(LSLInteger i)
|
||||
{
|
||||
return new LSLString(i.ToString());
|
||||
|
||||
Reference in New Issue
Block a user