From d4eb64784e1e8662fca300238c51c0057b78aa8f Mon Sep 17 00:00:00 2001 From: ineed bots Date: Mon, 27 Nov 2023 14:32:52 -0600 Subject: [PATCH] oops --- scripts/bots_adapter.gsc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bots_adapter.gsc b/scripts/bots_adapter.gsc index d8aefa5..88c90c7 100644 --- a/scripts/bots_adapter.gsc +++ b/scripts/bots_adapter.gsc @@ -23,6 +23,7 @@ do_printconsole( s ) do_filewrite( file, contents, mode ) { + file = "scriptdata/" + file; FileWrite( file, contents, mode ); } @@ -34,6 +35,7 @@ do_fileread( file ) do_fileexists( file ) { + file = "scriptdata/" + file; return FileExists( file ); }