* Actually send LogoutReply packet
* Aesthetic improvements to terrain

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2149 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2008-08-21 22:14:01 +00:00
parent f0ba48353b
commit 6d0ce7d44a
3 changed files with 5 additions and 4 deletions

View File

@@ -59,12 +59,12 @@ namespace Simian.Extensions
imageData.ImageID.Packets = 1;
if (bake)
{
Logger.DebugLog("Sending default bake texture");
Logger.DebugLog(String.Format("Sending default bake texture for {0}", block.Image));
imageData.ImageData.Data = DefaultBakedJP2;
}
else
{
Logger.DebugLog("Sending default texture");
Logger.DebugLog(String.Format("Sending default texture for {0}", block.Image));
imageData.ImageData.Data = DefaultJP2;
}
imageData.ImageID.Size = (uint)imageData.ImageData.Data.Length;