summaryrefslogtreecommitdiffstats
path: root/viewer/MinedMap.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/MinedMap.js')
-rw-r--r--viewer/MinedMap.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/MinedMap.js b/viewer/MinedMap.js
index 464bd22..ad330b2 100644
--- a/viewer/MinedMap.js
+++ b/viewer/MinedMap.js
@@ -21,7 +21,7 @@ var MinedMapLayer = L.GridLayer.extend({
if (coords.x >= this._info.minX && coords.x <= this._info.maxX &&
coords.y >= this._info.minZ && coords.y <= this._info.maxZ &&
this._regions[coords.y-this._info.minZ][coords.x-this._info.minX])
- tile.src = 'data/0/r.'+coords.x+'.'+coords.y+'.png';
+ tile.src = 'data/map/0/r.'+coords.x+'.'+coords.y+'.png';
return tile;
},