[IPCPipe] Disable when debugging

This commit is contained in:
momo5502 2017-03-30 20:08:05 +02:00
parent 0a8f0e5f70
commit 36beb29f55

View File

@ -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);