diff --git a/OpenSim/Framework/General/Types/AssetBase.cs b/OpenSim/Framework/General/Types/AssetBase.cs index 181e1e3f76..71642a2f9c 100644 --- a/OpenSim/Framework/General/Types/AssetBase.cs +++ b/OpenSim/Framework/General/Types/AssetBase.cs @@ -37,6 +37,8 @@ namespace OpenSim.Framework.Types public sbyte InvType; public string Name; public string Description; + public bool Local; + public bool Temporary; public AssetBase() { diff --git a/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs b/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs index 3a03d48705..9fbd68eaf5 100644 --- a/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs +++ b/OpenSim/Region/Environment/Modules/DynamicTextureModule.cs @@ -72,7 +72,7 @@ namespace OpenSim.Region.Environment.Modules public LLUUID AddDynamicTextureURL(LLUUID simID, LLUUID primID, string contentType, string url, string extraParams, int updateTimer) { - System.Console.WriteLine("dynamic texture being created " + url + " of type " + contentType); + System.Console.WriteLine("dynamic texture being created: " + url + " of type " + contentType); if (this.RenderPlugins.ContainsKey(contentType)) { DynamicTextureUpdater updater = new DynamicTextureUpdater();