From caa54a7f2b84de20c43d187464498b685637e736 Mon Sep 17 00:00:00 2001 From: Archi Date: Wed, 23 Nov 2022 12:08:27 +0100 Subject: [PATCH] Run RemoteCommunication also in Debug builds Originally it was to not spam the server with irrelevant data, but sometimes I'm also debugging that part and it's counter-intuitive. If somebody doesn't want that during debugging, he has bot config option for that. --- ArchiSteamFarm/Steam/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/Steam/Bot.cs b/ArchiSteamFarm/Steam/Bot.cs index a12900503..5cce06650 100644 --- a/ArchiSteamFarm/Steam/Bot.cs +++ b/ArchiSteamFarm/Steam/Bot.cs @@ -2103,7 +2103,7 @@ public sealed class Bot : IAsyncDisposable, IDisposable { RemoteCommunication = null; } - if (!Debugging.IsDebugBuild && (BotConfig.RemoteCommunication > BotConfig.ERemoteCommunication.None)) { + if (BotConfig.RemoteCommunication > BotConfig.ERemoteCommunication.None) { RemoteCommunication = new RemoteCommunication(this); }