diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 1dd4ca4..05a4170 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -9808,10 +9808,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
9808 | } | 9808 | } |
9809 | int[] nPrice = new int[5]; | 9809 | int[] nPrice = new int[5]; |
9810 | nPrice[0]=price; | 9810 | nPrice[0]=price; |
9811 | nPrice[1] = (LSL_Integer)quick_pay_buttons.Data[0]; | 9811 | nPrice[1] = (LSL_Integer)Convert.ToInt32(quick_pay_buttons.Data[0]); |
9812 | nPrice[2] = (LSL_Integer)quick_pay_buttons.Data[1]; | 9812 | nPrice[2] = (LSL_Integer)Convert.ToInt32(quick_pay_buttons.Data[1]); |
9813 | nPrice[3] = (LSL_Integer)quick_pay_buttons.Data[2]; | 9813 | nPrice[3] = (LSL_Integer)Convert.ToInt32(quick_pay_buttons.Data[2]); |
9814 | nPrice[4] = (LSL_Integer)quick_pay_buttons.Data[3]; | 9814 | nPrice[4] = (LSL_Integer)Convert.ToInt32(quick_pay_buttons.Data[3]); |
9815 | m_host.ParentGroup.RootPart.PayPrice = nPrice; | 9815 | m_host.ParentGroup.RootPart.PayPrice = nPrice; |
9816 | m_host.ParentGroup.HasGroupChanged = true; | 9816 | m_host.ParentGroup.HasGroupChanged = true; |
9817 | } | 9817 | } |