From eefb13c59b17de32eb37f2e86adda65d32ec830d Mon Sep 17 00:00:00 2001 From: Nick Guy Date: Mon, 2 Jun 2025 22:17:15 +0100 Subject: [PATCH] Update script file path to include 'scripts' subdirectory Adjusted the file path resolution to include the 'scripts' folder for better organization and alignment with directory structure. Fallback to the default template remains unchanged. --- load-script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/load-script.sh b/load-script.sh index 4f8797c..1035435 100755 --- a/load-script.sh +++ b/load-script.sh @@ -12,7 +12,7 @@ else fi if [[ "${script_name}x" != "x" ]]; then - script_file="${root_dir}/${script_name}.png" + script_file="${root_dir}/scripts/${script_name}.png" else script_file="${DIR}/templates/map_background.png" fi