diff --git a/DragonECS.csproj b/DragonECS.csproj
index dbdece2..073cb45 100644
--- a/DragonECS.csproj
+++ b/DragonECS.csproj
@@ -10,7 +10,7 @@
DCFApixels.DragonECS
DragonECS
- 0.9.7
+ 0.9.8
DCFApixels
ECS Framework for Game Engines with C# and .Net Platform
DCFApixels
diff --git a/package.json b/package.json
index b7f2c0d..e687b50 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"displayName": "DragonECS",
"description": "C# Entity Component System Framework",
"unity": "2020.3",
- "version": "0.9.7",
+ "version": "0.9.8",
"repository": {
"type": "git",
"url": "https://github.com/DCFApixels/DragonECS.git"
diff --git a/src/Executors/EcsWhereExecutor.cs b/src/Executors/EcsWhereExecutor.cs
index 66d84d7..d439441 100644
--- a/src/Executors/EcsWhereExecutor.cs
+++ b/src/Executors/EcsWhereExecutor.cs
@@ -89,7 +89,7 @@ namespace DCFApixels.DragonECS.Internal
public EcsSpan Execute()
{
Execute_Iternal();
-#if DEBUG || DRAGONECS_DEEP_DEBUG
+#if DEBUG && DRAGONECS_DEEP_DEBUG
var newSpan = new EcsSpan(World.ID, _filteredAllEntities, _filteredAllEntitiesCount);
using (EcsGroup group = EcsGroup.New(World))
{
@@ -121,7 +121,7 @@ namespace DCFApixels.DragonECS.Internal
return Execute();
}
ExecuteFor_Iternal(span);
-#if DEBUG || DRAGONECS_DEEP_DEBUG
+#if DEBUG && DRAGONECS_DEEP_DEBUG
var newSpan = new EcsSpan(World.ID, _filteredEntities, _filteredEntitiesCount);
foreach (var e in newSpan)
{