From cf9c856c4d2e8c62d17c3709c8615899f2087de1 Mon Sep 17 00:00:00 2001 From: Jari van der Kaap Date: Thu, 4 May 2023 23:23:42 +0200 Subject: [PATCH] fix: only load the gsc files with the right magic --- src/client/component/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/component/script.cpp b/src/client/component/script.cpp index 4a9e3eb6..345b507e 100644 --- a/src/client/component/script.cpp +++ b/src/client/component/script.cpp @@ -69,7 +69,7 @@ namespace script { std::string data; auto script_file = script.generic_string(); - if (!std::filesystem::is_directory(script) && utils::io::read_file(script_file, &data)) + if (!std::filesystem::is_directory(script) && utils::io::read_file(script_file, &data) && *(int*)data.c_str() == 0x43534780) { print_loading_script(script_file); load_script(script_file, data);