aboutsummaryrefslogtreecommitdiff
path: root/scripts/generate_map_img.py
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2021-01-03 14:59:26 +0100
committerFlorian Fischer <florian.fl.fischer@fau.de>2021-01-03 14:59:26 +0100
commit757d3fad52a1467b414e104b51d82c88ddd6a625 (patch)
tree0e3062e05880a4f4c0c2870821e13155a4b24330 /scripts/generate_map_img.py
parent6df7d150975c76be139b1999d7809e6dd0ef4171 (diff)
downloadmuhqs-game-757d3fad52a1467b414e104b51d82c88ddd6a625.tar.gz
muhqs-game-757d3fad52a1467b414e104b51d82c88ddd6a625.zip
introduce seperate assets subdirectory
Diffstat (limited to 'scripts/generate_map_img.py')
-rwxr-xr-xscripts/generate_map_img.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generate_map_img.py b/scripts/generate_map_img.py
index bb6925bc..f4e29148 100755
--- a/scripts/generate_map_img.py
+++ b/scripts/generate_map_img.py
@@ -7,7 +7,7 @@ import os
from typing import MutableMapping
MAP_ROOT = pathlib.Path(os.getcwd())
-TILES_DIR = MAP_ROOT / 'tiles'
+TILES_DIR = MAP_ROOT / '../assets/tiles'
SHOW_MAP = False
def get_tile_path(tile: str) -> pathlib.Path:
@@ -131,7 +131,7 @@ def main():
global MAP_ROOT
MAP_ROOT = pathlib.Path(args.latex_root)
global TILES_DIR
- TILES_DIR = MAP_ROOT / 'tiles'
+ TILES_DIR = MAP_ROOT / '../assets/tiles'
if args.show_map:
global SHOW_MAP