mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
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.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user