aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-11-04 00:46:34 +1000
committerDavid Walter Seikel2016-11-04 00:46:34 +1000
commit58783a5216b81863988110174229a65ceb315e1e (patch)
tree74d08dcd7e127f288cd7a8026c776385a738d484 /OpenSim/Services
parentEven OpenSim removed the silly IAR avatar presence check. Purge it with fire. (diff)
downloadopensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.zip
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.gz
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.bz2
opensim-SC_OLD-58783a5216b81863988110174229a65ceb315e1e.tar.xz
Attempt to move everything writable, and the configs, out of the bin directory.
Log configs are still in the bin directory.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/MapImageService/MapImageService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/MapImageService/MapImageService.cs b/OpenSim/Services/MapImageService/MapImageService.cs
index a816411..6b4a91a 100644
--- a/OpenSim/Services/MapImageService/MapImageService.cs
+++ b/OpenSim/Services/MapImageService/MapImageService.cs
@@ -80,7 +80,7 @@ namespace OpenSim.Services.MapImageService
80 IConfig serviceConfig = config.Configs["MapImageService"]; 80 IConfig serviceConfig = config.Configs["MapImageService"];
81 if (serviceConfig != null) 81 if (serviceConfig != null)
82 { 82 {
83 m_TilesStoragePath = serviceConfig.GetString("TilesStoragePath", m_TilesStoragePath); 83 m_TilesStoragePath = "../caches/" + serviceConfig.GetString("TilesStoragePath", m_TilesStoragePath);
84 if (!Directory.Exists(m_TilesStoragePath)) 84 if (!Directory.Exists(m_TilesStoragePath))
85 Directory.CreateDirectory(m_TilesStoragePath); 85 Directory.CreateDirectory(m_TilesStoragePath);
86 86