diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index 9277954..ba851fc 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -96,6 +96,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
96 | public int SalePrice; | 96 | public int SalePrice; |
97 | public uint Category; | 97 | public uint Category; |
98 | 98 | ||
99 | // TODO: This needs to be persisted in next XML version update! | ||
100 | [XmlIgnore] public int[] PayPrice = {0,0,0,0,0}; | ||
99 | 101 | ||
100 | public Int32 CreationDate; | 102 | public Int32 CreationDate; |
101 | public uint ParentID = 0; | 103 | public uint ParentID = 0; |
@@ -2456,6 +2458,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
2456 | info.AddValue("m_clickAction", m_clickAction); | 2458 | info.AddValue("m_clickAction", m_clickAction); |
2457 | info.AddValue("m_shape", m_shape); | 2459 | info.AddValue("m_shape", m_shape); |
2458 | info.AddValue("m_parentGroup", m_parentGroup); | 2460 | info.AddValue("m_parentGroup", m_parentGroup); |
2461 | info.AddValue("PayPrice", PayPrice); | ||
2459 | } | 2462 | } |
2460 | 2463 | ||
2461 | } | 2464 | } |