aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/World/MoneyModule
diff options
context:
space:
mode:
authorMelanie2012-01-28 01:01:23 +0000
committerMelanie2012-01-28 01:01:23 +0000
commit428407c5e409f0734ce909d5db9b1114a92cba35 (patch)
treeb1fc56efd4d8f9251811bfdb3df434534787b1c8 /OpenSim/Region/OptionalModules/World/MoneyModule
parentMerge branch 'master' into careminster (diff)
parentRemove IClientAPI from the money module. It was only used to pass in the (diff)
downloadopensim-SC_OLD-428407c5e409f0734ce909d5db9b1114a92cba35.zip
opensim-SC_OLD-428407c5e409f0734ce909d5db9b1114a92cba35.tar.gz
opensim-SC_OLD-428407c5e409f0734ce909d5db9b1114a92cba35.tar.bz2
opensim-SC_OLD-428407c5e409f0734ce909d5db9b1114a92cba35.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/MoneyModule')
-rw-r--r--OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
index 54d4e92..d206f69 100644
--- a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
+++ b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
@@ -775,11 +775,11 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule
775 // Please do not refactor these to be just one method 775 // Please do not refactor these to be just one method
776 // Existing implementations need the distinction 776 // Existing implementations need the distinction
777 // 777 //
778 public bool UploadCovered(IClientAPI client, int amount) 778 public bool UploadCovered(UUID agentID, int amount)
779 { 779 {
780 return true; 780 return true;
781 } 781 }
782 public bool AmountCovered(IClientAPI client, int amount) 782 public bool AmountCovered(UUID agentID, int amount)
783 { 783 {
784 return true; 784 return true;
785 } 785 }