aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/EventManager.cs
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-09 19:30:40 +0000
committerMelanie Thielker2008-11-09 19:30:40 +0000
commit664e8a464e4608afeb590a3330ccc69e7988138b (patch)
tree099c17a1769a7e7ac16232c5a20f5d9515a1d480 /OpenSim/Region/Environment/Scenes/EventManager.cs
parentCause llGetInventoryType to return the asset type, which corresponds with (diff)
downloadopensim-SC_OLD-664e8a464e4608afeb590a3330ccc69e7988138b.zip
opensim-SC_OLD-664e8a464e4608afeb590a3330ccc69e7988138b.tar.gz
opensim-SC_OLD-664e8a464e4608afeb590a3330ccc69e7988138b.tar.bz2
opensim-SC_OLD-664e8a464e4608afeb590a3330ccc69e7988138b.tar.xz
Script region crossing. This has not user functionality, but lays all the
groundwork.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/EventManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/EventManager.cs b/OpenSim/Region/Environment/Scenes/EventManager.cs
index 244b76f8..5d21dc5 100644
--- a/OpenSim/Region/Environment/Scenes/EventManager.cs
+++ b/OpenSim/Region/Environment/Scenes/EventManager.cs
@@ -104,7 +104,7 @@ namespace OpenSim.Region.Environment.Scenes
104 104
105 public event OnPermissionErrorDelegate OnPermissionError; 105 public event OnPermissionErrorDelegate OnPermissionError;
106 106
107 public delegate void NewRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez, string engine); 107 public delegate void NewRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez, string engine, int stateSource);
108 108
109 public event NewRezScript OnRezScript; 109 public event NewRezScript OnRezScript;
110 110
@@ -548,13 +548,13 @@ namespace OpenSim.Region.Environment.Scenes
548 } 548 }
549 } 549 }
550 550
551 public void TriggerRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez, string engine) 551 public void TriggerRezScript(uint localID, UUID itemID, string script, int startParam, bool postOnRez, string engine, int stateSource)
552 { 552 {
553 handlerRezScript = OnRezScript; 553 handlerRezScript = OnRezScript;
554 if (handlerRezScript != null) 554 if (handlerRezScript != null)
555 { 555 {
556 handlerRezScript(localID, itemID, script, startParam, 556 handlerRezScript(localID, itemID, script, startParam,
557 postOnRez, engine); 557 postOnRez, engine, stateSource);
558 } 558 }
559 } 559 }
560 560