diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetCache.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetCache.cs b/OpenSim/Framework/Communications/Cache/AssetCache.cs index 3f594af..d947228 100644 --- a/OpenSim/Framework/Communications/Cache/AssetCache.cs +++ b/OpenSim/Framework/Communications/Cache/AssetCache.cs | |||
@@ -151,7 +151,7 @@ namespace OpenSim.Framework.Communications.Caches | |||
151 | 151 | ||
152 | public void AddAsset(AssetBase asset) | 152 | public void AddAsset(AssetBase asset) |
153 | { | 153 | { |
154 | // Console.WriteLine("adding asset " + asset.FullID.ToStringHyphenated()); | 154 | System.Console.WriteLine("adding asset " + asset.FullID.ToStringHyphenated()); |
155 | if (asset.Type == 0) | 155 | if (asset.Type == 0) |
156 | { | 156 | { |
157 | //Console.WriteLine("which is a texture"); | 157 | //Console.WriteLine("which is a texture"); |
@@ -161,6 +161,11 @@ namespace OpenSim.Framework.Communications.Caches | |||
161 | this.Textures.Add(textur.FullID, textur); | 161 | this.Textures.Add(textur.FullID, textur); |
162 | this._assetServer.UploadNewAsset(asset); | 162 | this._assetServer.UploadNewAsset(asset); |
163 | } | 163 | } |
164 | else | ||
165 | { | ||
166 | TextureImage textur = new TextureImage(asset); | ||
167 | this.Textures[asset.FullID] = textur; | ||
168 | } | ||
164 | } | 169 | } |
165 | else | 170 | else |
166 | { | 171 | { |