diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs index 5a7d4de..8adb281 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |||
@@ -138,6 +138,14 @@ namespace OpenSim.Region.Environment.Scenes | |||
138 | } | 138 | } |
139 | } | 139 | } |
140 | 140 | ||
141 | public virtual void ProcessMoneyTransferRequest(LLUUID source, LLUUID destination, int amount, int transactiontype, string description) | ||
142 | { | ||
143 | EventManager.MoneyTransferArgs args = new EventManager.MoneyTransferArgs( | ||
144 | source, destination, amount, transactiontype, description); | ||
145 | |||
146 | EventManager.TriggerMoneyTransfer(this, args); | ||
147 | } | ||
148 | |||
141 | public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) | 149 | public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) |
142 | { | 150 | { |
143 | EventManager.TriggerObjectGrab(localID, offsetPos, remoteClient); | 151 | EventManager.TriggerObjectGrab(localID, offsetPos, remoteClient); |