From 2252cd73f98b2b1dac6ea895aad640a970ec63d8 Mon Sep 17 00:00:00 2001 From: VNC <52937757+VNNCC@users.noreply.github.com> Date: Thu, 7 Jan 2021 00:06:43 +0100 Subject: [PATCH] Removed unnecessary check --- Source/Editor/Tools/Terrain/CarveTab.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/Editor/Tools/Terrain/CarveTab.cs b/Source/Editor/Tools/Terrain/CarveTab.cs index c8029c82a..37ce82c1f 100644 --- a/Source/Editor/Tools/Terrain/CarveTab.cs +++ b/Source/Editor/Tools/Terrain/CarveTab.cs @@ -136,9 +136,6 @@ namespace FlaxEditor.Tools.Terrain private void OnCreateNewTerrainClicked() { - if (!Level.IsAnySceneLoaded) - return; - Editor.UI.CreateTerrain(); }