diff options
author | lbsa71 | 2007-10-27 11:45:52 +0000 |
---|---|---|
committer | lbsa71 | 2007-10-27 11:45:52 +0000 |
commit | fb6aa6eafc476ff7c2987395cd8c9c8d8fb4e827 (patch) | |
tree | 5944729f86d4dcd1c291c8fc2730006658826070 /OpenSim/Framework | |
parent | Added method to create default config file in region server(OpenSim) followin... (diff) | |
download | opensim-SC_OLD-fb6aa6eafc476ff7c2987395cd8c9c8d8fb4e827.zip opensim-SC_OLD-fb6aa6eafc476ff7c2987395cd8c9c8d8fb4e827.tar.gz opensim-SC_OLD-fb6aa6eafc476ff7c2987395cd8c9c8d8fb4e827.tar.bz2 opensim-SC_OLD-fb6aa6eafc476ff7c2987395cd8c9c8d8fb4e827.tar.xz |
* Added 'Jim' and 'Goblin' shapes; not available in inventory yet though
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/AssetTransactions.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs index 581e300..f23441d 100644 --- a/OpenSim/Framework/Communications/Cache/AssetTransactions.cs +++ b/OpenSim/Framework/Communications/Cache/AssetTransactions.cs | |||
@@ -287,7 +287,9 @@ namespace OpenSim.Framework.Communications.Cache | |||
287 | 287 | ||
288 | if (m_dumpAssetToFile) | 288 | if (m_dumpAssetToFile) |
289 | { | 289 | { |
290 | SaveAssetToFile("testudpupload" + Util.RandomClass.Next(1, 1000) + ".dat", this.Asset.Data); | 290 | DateTime now = DateTime.Now; |
291 | string filename = String.Format("{6}_{7}_{0:d2}{1:d2}{2:d2}_{3:d2}{4:d2}{5:d2}", now.Year, now.Month, now.Day, now.Hour, now.Minute, now.Second, Asset.Name, Asset.Type ); | ||
292 | SaveAssetToFile(filename, this.Asset.Data); | ||
291 | } | 293 | } |
292 | } | 294 | } |
293 | 295 | ||