From f01587c15900579e33577c0c4118c26ed55dc95b Mon Sep 17 00:00:00 2001 From: Aaron Ruiz Mora Date: Tue, 29 Jun 2021 16:10:26 +0100 Subject: [PATCH] Editor launcher missed to set 'sv_isDedicated' to false like the launchers (#1643) Signed-off-by: moraaar --- Code/Sandbox/Editor/GameEngine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Code/Sandbox/Editor/GameEngine.cpp b/Code/Sandbox/Editor/GameEngine.cpp index 5c2413a440..34f938fdf8 100644 --- a/Code/Sandbox/Editor/GameEngine.cpp +++ b/Code/Sandbox/Editor/GameEngine.cpp @@ -18,6 +18,7 @@ #include #include #include +#include // AzFramework #include @@ -401,6 +402,7 @@ AZ::Outcome CGameEngine::Init( sip.bEditor = true; sip.bDedicatedServer = false; + AZ::Interface::Get()->PerformCommand("sv_isDedicated false"); sip.bPreview = bPreviewMode; sip.bTestMode = bTestMode; sip.hInstance = nullptr;