aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-01-28 00:44:11 +0000
committerJustin Clark-Casey (justincc)2012-01-28 00:44:11 +0000
commite391d6390c3249ff6a509ebdc99e3037a850dada (patch)
treed419f1a29c80b1da48c58aa8766a37c41fb24279 /OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs
parentComment out xfer section in Scene.UpdateTaskInventory() which was causing spu... (diff)
parentRemove IClientAPI from the money module. It was only used to pass in the (diff)
downloadopensim-SC-e391d6390c3249ff6a509ebdc99e3037a850dada.zip
opensim-SC-e391d6390c3249ff6a509ebdc99e3037a850dada.tar.gz
opensim-SC-e391d6390c3249ff6a509ebdc99e3037a850dada.tar.bz2
opensim-SC-e391d6390c3249ff6a509ebdc99e3037a850dada.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs')
-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 8fc50ff..9c838d0 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 }