From 6ac0dd57e6c85439e44767042a26e2dc5e820aed Mon Sep 17 00:00:00 2001 From: Maurice Heumann Date: Fri, 3 Feb 2023 19:19:47 +0100 Subject: [PATCH] Fix client --- src/client/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/main.cpp b/src/client/main.cpp index b7231496..1dfdb9ae 100644 --- a/src/client/main.cpp +++ b/src/client/main.cpp @@ -262,7 +262,7 @@ namespace throw std::runtime_error("Unable to load binary into memory"); } - if (has_server != game::is_server()) + if (is_server != game::is_server()) { throw std::runtime_error("Bad binary loaded into memory"); }