diff options
author | Adam Frisby | 2008-02-04 10:39:30 +0000 |
---|---|---|
committer | Adam Frisby | 2008-02-04 10:39:30 +0000 |
commit | 6fbc64af5e2d179e2235f21645dd717a4066592d (patch) | |
tree | 39794023c5c0fe27f75813722f73176b3c61159d /OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs | |
parent | * Lowered maxchunk from 1500 bytes to 1250 bytes to make sure packets fit bel... (diff) | |
download | opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.zip opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.gz opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.bz2 opensim-SC_OLD-6fbc64af5e2d179e2235f21645dd717a4066592d.tar.xz |
* Whole buncha stuff.
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); |