diff options
author | Adam Frisby | 2007-09-24 15:56:34 +0000 |
---|---|---|
committer | Adam Frisby | 2007-09-24 15:56:34 +0000 |
commit | f5eac12a88d2b7fd5011cc3634191e51849f2394 (patch) | |
tree | fb635d8bfe028d3626658805eb8c03c14e3be192 /OpenSim/Region/Environment/Scenes/SceneEvents.cs | |
parent | * Refactored the central update loop - now easier to work with. Switching fro... (diff) | |
download | opensim-SC_OLD-f5eac12a88d2b7fd5011cc3634191e51849f2394.zip opensim-SC_OLD-f5eac12a88d2b7fd5011cc3634191e51849f2394.tar.gz opensim-SC_OLD-f5eac12a88d2b7fd5011cc3634191e51849f2394.tar.bz2 opensim-SC_OLD-f5eac12a88d2b7fd5011cc3634191e51849f2394.tar.xz |
* Renamed ScriptConsole to PluginConsole for clarity
* Fixed a bug where ODE tries to do a physics update for zero frames.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneEvents.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneEvents.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneEvents.cs b/OpenSim/Region/Environment/Scenes/SceneEvents.cs index 8e8e9a7..4f0ffc7 100644 --- a/OpenSim/Region/Environment/Scenes/SceneEvents.cs +++ b/OpenSim/Region/Environment/Scenes/SceneEvents.cs | |||
@@ -37,9 +37,9 @@ namespace OpenSim.Region.Environment.Scenes | |||
37 | 37 | ||
38 | public event OnParcelPrimCountAddDelegate OnParcelPrimCountAdd; | 38 | public event OnParcelPrimCountAddDelegate OnParcelPrimCountAdd; |
39 | 39 | ||
40 | public delegate void OnScriptConsoleDelegate(string[] args); | 40 | public delegate void OnPluginConsoleDelegate(string[] args); |
41 | 41 | ||
42 | public event OnScriptConsoleDelegate OnScriptConsole; | 42 | public event OnPluginConsoleDelegate OnPluginConsole; |
43 | 43 | ||
44 | public delegate void OnShutdownDelegate(); | 44 | public delegate void OnShutdownDelegate(); |
45 | 45 | ||
@@ -66,10 +66,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
66 | OnPermissionError(user, reason); | 66 | OnPermissionError(user, reason); |
67 | } | 67 | } |
68 | 68 | ||
69 | public void TriggerOnScriptConsole(string[] args) | 69 | public void TriggerOnPluginConsole(string[] args) |
70 | { | 70 | { |
71 | if (OnScriptConsole != null) | 71 | if (OnPluginConsole != null) |
72 | OnScriptConsole(args); | 72 | OnPluginConsole(args); |
73 | } | 73 | } |
74 | 74 | ||
75 | public void TriggerOnFrame() | 75 | public void TriggerOnFrame() |