From 63957db4a58bd9ed72f1634514eb96168e062b5e Mon Sep 17 00:00:00 2001 From: James Darpinian Date: Sun, 5 May 2024 14:28:37 -0700 Subject: [PATCH] fix error message --- code/web/ioquake3.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/web/ioquake3.html b/code/web/ioquake3.html index af93d23379..01bfdef1de 100644 --- a/code/web/ioquake3.html +++ b/code/web/ioquake3.html @@ -58,7 +58,7 @@ if (!buffers[files.indexOf(`pak0.pk3`)]) throw new Error(`pak0.pk3 not found at ${pakPathname}/pak0.pk3.`); if (buffers[files.indexOf(`pak${MAX_PAK_FILES+1}.pk3`)]) - throw new Error(`If you want to load more than ${MAX_PAK_FILES} pak files, you need to modify the code in prerun-setup-filesystem.js.`); + throw new Error(`If you want to load more than ${MAX_PAK_FILES} pak files, you need to modify the code in ioquake3.html.`); module.FS.mkdirTree(`/home/web_user/.q3a/${pakBasename}`); for (let i = files.length - 1; i >= 0; i--) { if (buffers[i]) {