From 79150f8cbe96deb0b35b7624d7f04c8d9f6adc0d Mon Sep 17 00:00:00 2001 From: Ahrimdon Date: Tue, 13 Aug 2024 05:20:53 -0400 Subject: [PATCH] maint: remove steam verfification --- src/client/component/steam_proxy.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/component/steam_proxy.cpp b/src/client/component/steam_proxy.cpp index 0cb182fe..dd61af46 100644 --- a/src/client/component/steam_proxy.cpp +++ b/src/client/component/steam_proxy.cpp @@ -209,11 +209,11 @@ namespace steam_proxy switch (res) { case ownership_state::nosteam: - throw std::runtime_error("Steam must be running to play this game!"); + break; case ownership_state::unowned: - throw std::runtime_error("You must own the game on steam to play this mod!"); + break; case ownership_state::error: - throw std::runtime_error("Failed to verify ownership of the game!"); + break; case ownership_state::success: break; }