* I XmlIgnored the TaskInventory Property as a temporary measure. Taking things and rezzing them works again. (though, I suggest waiting on taking things until justincc has an opportunity to look at the TaskInventory property causing the XML Serialization to overrun.) It's MinOccurs is 0 in the XML Schema, so it should work fine when he adds it back.
parent
4a47d8f5e1
commit
072b5faa34
|
@ -293,7 +293,7 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
{
|
||||
m_scene = scene;
|
||||
m_regionHandle = regionHandle;
|
||||
|
||||
|
||||
StringReader sr = new StringReader(xmlData);
|
||||
XmlTextReader reader = new XmlTextReader(sr);
|
||||
reader.Read();
|
||||
|
|
|
@ -77,6 +77,7 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
/// </summary>
|
||||
protected TaskInventoryDictionary m_taskInventory = new TaskInventoryDictionary();
|
||||
|
||||
[XmlIgnore]
|
||||
public TaskInventoryDictionary TaskInventory
|
||||
{
|
||||
get { return m_taskInventory; }
|
||||
|
|
Loading…
Reference in New Issue