* IMPORTANT OpenMetaverseTypes CHANGE! Changed string to UUID typecast operator from implicit to explicit. This prevents accidents like "if (myUUID == null)" from compiling

* Added ImageCodec enum

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2209 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-09-10 18:42:11 +00:00
parent 857b78c2cf
commit 4f94adf5ec
5 changed files with 22 additions and 7 deletions

View File

@@ -1693,8 +1693,8 @@ namespace OpenMetaverse
#endregion Decode update data
Primitive obj = (update.Avatar) ?
(Primitive)GetAvatar(simulator, update.LocalID, null):
(Primitive)GetPrimitive(simulator, update.LocalID, null);
(Primitive)GetAvatar(simulator, update.LocalID, UUID.Zero):
(Primitive)GetPrimitive(simulator, update.LocalID, UUID.Zero);
#region Update Client.Self
if (update.LocalID == Client.Self.localID)