diff options
author | Melanie Thielker | 2008-08-23 00:44:06 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-08-23 00:44:06 +0000 |
commit | 5d6f92fb9697dc09d26bba236846809c737fc5c0 (patch) | |
tree | 76637af39aaea0b30a19f322cadcdac5e301cb3f /OpenSim/Region/Environment/Interfaces/IMoneyModule.cs | |
parent | * Homer's amazing terrain MapTileRenderer. Thanks Homer! (diff) | |
download | opensim-SC-5d6f92fb9697dc09d26bba236846809c737fc5c0.zip opensim-SC-5d6f92fb9697dc09d26bba236846809c737fc5c0.tar.gz opensim-SC-5d6f92fb9697dc09d26bba236846809c737fc5c0.tar.bz2 opensim-SC-5d6f92fb9697dc09d26bba236846809c737fc5c0.tar.xz |
Patch #9171
Disallow bulk uploads if money module is present and upload cost
is set and the user hasn't got sufficient funds.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IMoneyModule.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs b/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs index eae6702..49d096b 100644 --- a/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs +++ b/OpenSim/Region/Environment/Interfaces/IMoneyModule.cs | |||
@@ -36,7 +36,10 @@ namespace OpenSim.Region.Environment.Interfaces | |||
36 | { | 36 | { |
37 | bool ObjectGiveMoney(LLUUID objectID, LLUUID fromID, LLUUID toID, | 37 | bool ObjectGiveMoney(LLUUID objectID, LLUUID fromID, LLUUID toID, |
38 | int amount); | 38 | int amount); |
39 | |||
40 | int GetBalance(IClientAPI client); | ||
39 | void ApplyUploadCharge(LLUUID agentID); | 41 | void ApplyUploadCharge(LLUUID agentID); |
42 | bool UploadCovered(IClientAPI client); | ||
40 | 43 | ||
41 | event ObjectPaid OnObjectPaid; | 44 | event ObjectPaid OnObjectPaid; |
42 | } | 45 | } |