diff options
author | Melanie | 2012-12-03 19:34:22 +0100 |
---|---|---|
committer | Melanie | 2012-12-03 19:34:22 +0100 |
commit | d3904ff48464fcde5266aac08b5c95227acbbcb1 (patch) | |
tree | e4e56e283647ec8ec728d0e7216becfa2c3b7ed8 /OpenSim/Region/ScriptEngine | |
parent | Merge branch 'teravuswork' of careminster:/var/git/careminster into teravuswork (diff) | |
download | opensim-SC_OLD-d3904ff48464fcde5266aac08b5c95227acbbcb1.zip opensim-SC_OLD-d3904ff48464fcde5266aac08b5c95227acbbcb1.tar.gz opensim-SC_OLD-d3904ff48464fcde5266aac08b5c95227acbbcb1.tar.bz2 opensim-SC_OLD-d3904ff48464fcde5266aac08b5c95227acbbcb1.tar.xz |
Add a transaction ID to the money module path for llTransferLindenDollars
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 700f538..6b63d94 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3013,7 +3013,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3013 | } | 3013 | } |
3014 | 3014 | ||
3015 | bool result = money.ObjectGiveMoney( | 3015 | bool result = money.ObjectGiveMoney( |
3016 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount); | 3016 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount, UUID.Zero); |
3017 | 3017 | ||
3018 | if (result) | 3018 | if (result) |
3019 | return 1; | 3019 | return 1; |
@@ -12529,7 +12529,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
12529 | } | 12529 | } |
12530 | 12530 | ||
12531 | bool result = money.ObjectGiveMoney( | 12531 | bool result = money.ObjectGiveMoney( |
12532 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount); | 12532 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount, txn); |
12533 | 12533 | ||
12534 | if (result) | 12534 | if (result) |
12535 | { | 12535 | { |