diff options
author | Adam Frisby | 2007-07-05 00:09:45 +0000 |
---|---|---|
committer | Adam Frisby | 2007-07-05 00:09:45 +0000 |
commit | 3c46e5b170991e41e8c82e25bae65cf46152b924 (patch) | |
tree | 1d8bb69cc57b9508fd8da25657f1c0bc088e5908 /OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs | |
parent | A bit more work on Building tools/support. (diff) | |
download | opensim-SC_OLD-3c46e5b170991e41e8c82e25bae65cf46152b924.zip opensim-SC_OLD-3c46e5b170991e41e8c82e25bae65cf46152b924.tar.gz opensim-SC_OLD-3c46e5b170991e41e8c82e25bae65cf46152b924.tar.bz2 opensim-SC_OLD-3c46e5b170991e41e8c82e25bae65cf46152b924.tar.xz |
* Added Java support back into Sugilite (although it still needs a calling host to be added).
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs b/OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs index d984d60..ed6f033 100644 --- a/OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs +++ b/OpenSim/Region/Environment/Scenes/scripting/ScriptInfo.cs | |||
@@ -28,7 +28,7 @@ | |||
28 | using OpenSim.Framework.Console; | 28 | using OpenSim.Framework.Console; |
29 | using OpenSim.Region.Environment.Scenes; | 29 | using OpenSim.Region.Environment.Scenes; |
30 | 30 | ||
31 | namespace OpenSim.Region.Enviorment.Scripting | 31 | namespace OpenSim.Region.Environment.Scripting |
32 | { | 32 | { |
33 | /// <summary> | 33 | /// <summary> |
34 | /// Class which provides access to the world | 34 | /// Class which provides access to the world |
@@ -44,11 +44,15 @@ namespace OpenSim.Region.Enviorment.Scripting | |||
44 | // The console | 44 | // The console |
45 | public LogBase logger; | 45 | public LogBase logger; |
46 | 46 | ||
47 | // API Access | ||
48 | public ScriptAPI api; | ||
49 | |||
47 | public ScriptInfo(Scene scene) | 50 | public ScriptInfo(Scene scene) |
48 | { | 51 | { |
49 | world = scene; | 52 | world = scene; |
50 | events = world.eventManager; | 53 | events = world.eventManager; |
51 | logger = MainLog.Instance; | 54 | logger = MainLog.Instance; |
55 | api = new ScriptAPI(scene); | ||
52 | } | 56 | } |
53 | } | 57 | } |
54 | } | 58 | } |