diff options
author | Charles Krinke | 2008-02-17 21:15:43 +0000 |
---|---|---|
committer | Charles Krinke | 2008-02-17 21:15:43 +0000 |
commit | e6a74344e71941d0d09b1c0bc95501b3171f142d (patch) | |
tree | bc1fc28c6e593de16897e873559dd25aba1082c2 /OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |
parent | * Last bit of cleanup now. As long as you keep physical prim off, you should... (diff) | |
download | opensim-SC_OLD-e6a74344e71941d0d09b1c0bc95501b3171f142d.zip opensim-SC_OLD-e6a74344e71941d0d09b1c0bc95501b3171f142d.tar.gz opensim-SC_OLD-e6a74344e71941d0d09b1c0bc95501b3171f142d.tar.bz2 opensim-SC_OLD-e6a74344e71941d0d09b1c0bc95501b3171f142d.tar.xz |
Thank you Hashbox for adding the
osConsoleCommand Feature to ll-functions.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs index e3d0451..088b985 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |||
@@ -1865,6 +1865,11 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1865 | m_LSL_Functions.osRegionNotice(msg); | 1865 | m_LSL_Functions.osRegionNotice(msg); |
1866 | } | 1866 | } |
1867 | 1867 | ||
1868 | public int osConsoleCommand(string Command) | ||
1869 | { | ||
1870 | return m_LSL_Functions.osConsoleCommand(Command); | ||
1871 | } | ||
1872 | |||
1868 | public double llList2Float(LSL_Types.list src, int index) | 1873 | public double llList2Float(LSL_Types.list src, int index) |
1869 | { | 1874 | { |
1870 | return m_LSL_Functions.llList2Float(src, index); | 1875 | return m_LSL_Functions.llList2Float(src, index); |
@@ -2203,4 +2208,4 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2203 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); | 2208 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); |
2204 | 2209 | ||
2205 | } | 2210 | } |
2206 | } \ No newline at end of file | 2211 | } |