Disallow bulk uploads if money module is present and upload cost
is set and the user hasn't got sufficient funds.
This commit is contained in:
Melanie Thielker
2008-08-23 00:44:06 +00:00
parent 50bf3618a3
commit 5d6f92fb96
5 changed files with 80 additions and 6 deletions

View File

@@ -36,7 +36,10 @@ namespace OpenSim.Region.Environment.Interfaces
{
bool ObjectGiveMoney(LLUUID objectID, LLUUID fromID, LLUUID toID,
int amount);
int GetBalance(IClientAPI client);
void ApplyUploadCharge(LLUUID agentID);
bool UploadCovered(IClientAPI client);
event ObjectPaid OnObjectPaid;
}