diff options
author | UbitUmarov | 2012-12-07 14:01:22 +0000 |
---|---|---|
committer | UbitUmarov | 2012-12-07 14:01:22 +0000 |
commit | 1eddc4a9dad1cbe0a93b65331edd046ac1c9acf8 (patch) | |
tree | 5ff3a09b189ca0d436ef8f9cdccc46d5735f841d /OpenSim | |
parent | *TEST* add some avatar skeleton information and use it to calculate avatar (diff) | |
download | opensim-SC-1eddc4a9dad1cbe0a93b65331edd046ac1c9acf8.zip opensim-SC-1eddc4a9dad1cbe0a93b65331edd046ac1c9acf8.tar.gz opensim-SC-1eddc4a9dad1cbe0a93b65331edd046ac1c9acf8.tar.bz2 opensim-SC-1eddc4a9dad1cbe0a93b65331edd046ac1c9acf8.tar.xz |
fix regression
Diffstat (limited to 'OpenSim')
-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 7593395..7ff30ca 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; |
@@ -12547,7 +12547,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
12547 | } | 12547 | } |
12548 | 12548 | ||
12549 | bool result = money.ObjectGiveMoney( | 12549 | bool result = money.ObjectGiveMoney( |
12550 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount); | 12550 | m_host.ParentGroup.RootPart.UUID, m_host.ParentGroup.RootPart.OwnerID, toID, amount,UUID.Zero); |
12551 | 12551 | ||
12552 | if (result) | 12552 | if (result) |
12553 | { | 12553 | { |