From 36beb29f55abaf0ccbd2b36c5f4ef1fe41d2a2d2 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Thu, 30 Mar 2017 20:08:05 +0200 Subject: [PATCH] [IPCPipe] Disable when debugging --- src/Components/Modules/IPCPipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Modules/IPCPipe.cpp b/src/Components/Modules/IPCPipe.cpp index 3cb814d9..7d555f09 100644 --- a/src/Components/Modules/IPCPipe.cpp +++ b/src/Components/Modules/IPCPipe.cpp @@ -206,7 +206,7 @@ namespace Components IPCPipe::IPCPipe() { - if (Dedicated::IsEnabled() || Monitor::IsEnabled()) return; + if (Dedicated::IsEnabled() || Monitor::IsEnabled() || Loader::PerformingUnitTests()) return; // Server pipe IPCPipe::ServerPipe.onConnect(IPCPipe::ConnectClient);