* PacketDecoder now parses InventoryItemFlags field
* Additional callback sanity check in createnotecard git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2970 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -1004,10 +1004,10 @@ namespace OpenMetaverse.Packets
|
||||
|
||||
private static string DecodeInventoryFlags(string fieldName, object fieldData)
|
||||
{
|
||||
return String.Format("{0,30}: {1,-2} {2,-37} [FixMe]",
|
||||
return String.Format("{0,30}: {1,-2} {2,-37} [InventoryItemFlags]",
|
||||
fieldName,
|
||||
fieldData,
|
||||
"(" + fieldData + ")");
|
||||
(uint)fieldData,
|
||||
"(" + (InventoryItemFlags)(uint)fieldData + ")");
|
||||
}
|
||||
|
||||
private static string DecodeObjectSaleType(string fieldName, object fieldData)
|
||||
|
||||
Reference in New Issue
Block a user