aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorMelanie Thielker2015-08-17 21:46:30 +0200
committerMelanie Thielker2015-08-17 21:46:30 +0200
commitc53f732163b391e4bcd33c8acb917deb7598e0a8 (patch)
tree6b396d1678db3ddbdecef28099666461452cf81c /OpenSim/Tests
parentRevert "When scripts are sleeping, don't count that as execution time" (diff)
downloadopensim-SC_OLD-c53f732163b391e4bcd33c8acb917deb7598e0a8.zip
opensim-SC_OLD-c53f732163b391e4bcd33c8acb917deb7598e0a8.tar.gz
opensim-SC_OLD-c53f732163b391e4bcd33c8acb917deb7598e0a8.tar.bz2
opensim-SC_OLD-c53f732163b391e4bcd33c8acb917deb7598e0a8.tar.xz
Change the IScriptApi back to it's original form, removing XEngine
specific additions that should not have been there in the first place. Sleeping and time measurement are now completely internal to XEngine
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/MockScriptEngine.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/MockScriptEngine.cs b/OpenSim/Tests/Common/Mock/MockScriptEngine.cs
index 57be1da..d7a144c 100644
--- a/OpenSim/Tests/Common/Mock/MockScriptEngine.cs
+++ b/OpenSim/Tests/Common/Mock/MockScriptEngine.cs
@@ -264,5 +264,9 @@ namespace OpenSim.Tests.Common
264 { 264 {
265 PostedEvents.Clear(); 265 PostedEvents.Clear();
266 } 266 }
267
268 public void SleepScript(UUID itemID, int delay)
269 {
270 }
267 } 271 }
268} 272}