From 8c5984220d28effb7cef843cdc28b62df029d263 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 4 Mar 2023 13:51:05 +0100 Subject: [PATCH] Fix messages --- src/client/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/main.cpp b/src/client/main.cpp index cd04cf9f..cc75e8e3 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -314,11 +314,11 @@ namespace throw std::runtime_error("Bad binary loaded into memory"); } - if (!is_server && !game::is_legacy_client()) + if (!is_server && !game::is_client()) { - if(game::is_client()) + if(game::is_legacy_client()) { - throw std::runtime_error("You are running the latest Steam update. We're working on supporting it. For the time being, however, you have to revert to the old binary."); + throw std::runtime_error("You are using the outdated BlackOps3.exe. This version is not supported anymore. Please use the latest binary from Steam."); } throw std::runtime_error("Bad binary loaded into memory");