From 7bf943f7c1677c91269c1b871921659820d2b80f Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Mon, 11 Mar 2024 06:48:43 +0800 Subject: [PATCH] Update EcsWorld.cs --- src/EcsWorld.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EcsWorld.cs b/src/EcsWorld.cs index 914fdfd..388dd88 100644 --- a/src/EcsWorld.cs +++ b/src/EcsWorld.cs @@ -165,7 +165,7 @@ namespace DCFApixels.DragonECS EcsDebug.PrintWarning("The world is already destroyed"); return; } - if(id == NULL_WORLD_ID) + if (id == NULL_WORLD_ID) { #if (DEBUG && !DISABLE_DEBUG) Throw.World_WorldCantBeDestroyed();