From 0d1ed96deb5efb1a86ee9b15eeb2c2d0a7ff1dd6 Mon Sep 17 00:00:00 2001 From: Rim Date: Tue, 29 Apr 2025 05:31:53 -0400 Subject: [PATCH] chore(Loader.cpp): remove game binary hash check I don't get it... Why make an amazing singleplayer client for a dead game and limit players to the Steam version only? --- src/Components/Loader.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Components/Loader.cpp b/src/Components/Loader.cpp index 8f5ef53..be4e956 100644 --- a/src/Components/Loader.cpp +++ b/src/Components/Loader.cpp @@ -138,6 +138,7 @@ namespace Components return false; } + /* const auto hash = Utils::Cryptography::SHA1::Compute(data, true); if ((hash != "5F06ACF8FA84D20E902BBBF423466C6752D920BF")) { @@ -145,6 +146,7 @@ namespace Components Utils::Library::Terminate(); return false; } + */ return true; }