diff options
author | UbitUmarov | 2017-08-16 05:05:57 +0100 |
---|---|---|
committer | UbitUmarov | 2017-08-16 05:05:57 +0100 |
commit | 6d4b0a8ce3713eb45170f50b71d295ebaef0e51d (patch) | |
tree | ba57d22e92ae6cadef8af599a2aa4f2a78057fce /OpenSim/Region/OptionalModules | |
parent | fix merge issues (diff) | |
parent | Merge branch 'master' into BulletSim2017 (diff) | |
download | opensim-SC-6d4b0a8ce3713eb45170f50b71d295ebaef0e51d.zip opensim-SC-6d4b0a8ce3713eb45170f50b71d295ebaef0e51d.tar.gz opensim-SC-6d4b0a8ce3713eb45170f50b71d295ebaef0e51d.tar.bz2 opensim-SC-6d4b0a8ce3713eb45170f50b71d295ebaef0e51d.tar.xz |
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs index 47edeb9..3666c3f 100644 --- a/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs +++ b/OpenSim/Region/OptionalModules/World/MoneyModule/SampleMoneyModule.cs | |||
@@ -844,9 +844,14 @@ namespace OpenSim.Region.OptionalModules.World.MoneyModule | |||
844 | module.BuyObject(remoteClient, categoryID, localID, saleType, salePrice); | 844 | module.BuyObject(remoteClient, categoryID, localID, saleType, salePrice); |
845 | } | 845 | } |
846 | 846 | ||
847 | public void MoveMoney(UUID fromAgentID, UUID toAgentID, int amount, string text) | 847 | public void MoveMoney(UUID fromUser, UUID toUser, int amount, string text) |
848 | { | 848 | { |
849 | } | 849 | } |
850 | |||
851 | public bool MoveMoney(UUID fromUser, UUID toUser, int amount, MoneyTransactionType type, string text) | ||
852 | { | ||
853 | return true; | ||
854 | } | ||
850 | } | 855 | } |
851 | 856 | ||
852 | public enum TransactionType : int | 857 | public enum TransactionType : int |