diff options
author | Adam Frisby | 2009-08-16 21:41:57 +1000 |
---|---|---|
committer | Adam Frisby | 2009-08-16 21:41:57 +1000 |
commit | b28e82654150edd0ef21fc8361c023a99186d658 (patch) | |
tree | 881927dae04aac6a0843012a5c605f5ff7955a1b /OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs | |
parent | * [MRM] Added permission checks to MRM Events (ie, requires edit permission t... (diff) | |
download | opensim-SC-b28e82654150edd0ef21fc8361c023a99186d658.zip opensim-SC-b28e82654150edd0ef21fc8361c023a99186d658.tar.gz opensim-SC-b28e82654150edd0ef21fc8361c023a99186d658.tar.bz2 opensim-SC-b28e82654150edd0ef21fc8361c023a99186d658.tar.xz |
* Implements ISecurityCredential on all uses of SOPObject.cs except Avatar Attachments.
Diffstat (limited to 'OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs b/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs index a34684f..497ca39 100644 --- a/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs +++ b/OpenSim/Region/OptionalModules/Scripting/Minimodule/World.cs | |||
@@ -146,7 +146,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule | |||
146 | if (chat.Sender == null && chat.SenderObject != null) | 146 | if (chat.Sender == null && chat.SenderObject != null) |
147 | { | 147 | { |
148 | ChatEventArgs e = new ChatEventArgs(); | 148 | ChatEventArgs e = new ChatEventArgs(); |
149 | e.Sender = new SOPObject(m_internalScene, ((SceneObjectPart) chat.SenderObject).LocalId); | 149 | e.Sender = new SOPObject(m_internalScene, ((SceneObjectPart) chat.SenderObject).LocalId, m_security); |
150 | e.Text = chat.Message; | 150 | e.Text = chat.Message; |
151 | 151 | ||
152 | _OnChat(this, e); | 152 | _OnChat(this, e); |