No more PCode 143 noise

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@514 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2006-11-07 00:06:28 +00:00
parent c3444a4039
commit 6df78bd4f8
3 changed files with 10 additions and 21 deletions

View File

@@ -75,6 +75,7 @@ namespace libsecondlife
Prim = 9,
Avatar = 47,
Grass = 95,
ParticleSystem = 143,
Tree = 255
}
@@ -372,11 +373,14 @@ namespace libsecondlife
// FIXME: Handle tree objects
;
}
else if (block.PCode == (byte)PCode.ParticleSystem)
{
;
}
else
{
// FIXME: Figure out what the unknown PCodes are
Client.Log("Got an ObjectUpdate block with an unhandled PCode " +
block.PCode, Helpers.LogLevel.Debug);
// FIXME: How many of the PCodes do we actually need to handle?
;
}
}
}
@@ -684,13 +688,12 @@ namespace libsecondlife
}
else if (pcode == (byte)PCode.Grass || pcode == (byte)PCode.Tree)
{
// TODO:
// TODO: Add new_tree and any other tree-like prims
;
}
else
{
Client.Log("Got an ObjectUpdateCompressed block with unhandled PCode " +
pcode, Helpers.LogLevel.Debug);
// TODO: ...
continue;
}
}