From bd8a524e3a7d9f382ed2cc3eb4aa70cdf09677a8 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 26 Sep 2022 19:00:22 +0200 Subject: [PATCH] Respect nosteam mode --- src/client/component/steam_proxy.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client/component/steam_proxy.cpp b/src/client/component/steam_proxy.cpp index 9b358756..44e22f45 100644 --- a/src/client/component/steam_proxy.cpp +++ b/src/client/component/steam_proxy.cpp @@ -169,6 +169,11 @@ namespace steam_proxy return ownership_state::unowned; } + if (is_disabled()) + { + return ownership_state::success; + } + this->client_utils_.invoke("SetAppIDForCurrentPipe", app_id, false); char our_directory[MAX_PATH] = {0};