* Add .jp2 extension to archived textures

0.6.0-stable
Justin Clarke Casey 2008-05-27 23:20:53 +00:00
parent 69fdd0d3e8
commit e116c94482
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ namespace OpenSim.Region.Environment
foreach (LLUUID uuid in assets.Keys)
{
archive.AddFile(uuid.ToString(), assets[uuid].Data);
archive.AddFile(uuid.ToString() + ".jp2", assets[uuid].Data);
}
archive.WriteTar(m_savePath);