Removed hardcoded path, sigh.

This commit is contained in:
FrozenCow 2011-01-15 03:33:30 +01:00
parent b501f1d8cb
commit 32567b8569
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class WebServerRequest extends Thread {
if (path.startsWith("/up/")) {
handleUp(out, path.substring(3));
} else if (path.startsWith("/tiles/")) {
handleMapToDirectory(out, path.substring(6), "/srv/http/dynmap/tiles/");
handleMapToDirectory(out, path.substring(6), mgr.tilepath);
} else if (path.startsWith("/")) {
if(mgr.webPath.equals("[JAR]")) {
handleMapToJar(out, path);