diff --git a/Assets/Fungus/Scripts/Components/Flowchart.cs b/Assets/Fungus/Scripts/Components/Flowchart.cs index 0f72d38e..e0fef975 100644 --- a/Assets/Fungus/Scripts/Components/Flowchart.cs +++ b/Assets/Fungus/Scripts/Components/Flowchart.cs @@ -527,13 +527,13 @@ namespace Fungus if (block == null) { - Debug.LogError("Block " + blockName + "does not exist"); + Debug.LogError("Block " + blockName + " does not exist"); return; } if (!ExecuteBlock(block)) { - Debug.LogWarning("Block " + blockName + "failed to execute"); + Debug.LogWarning("Block " + blockName + " failed to execute"); } } @@ -546,7 +546,7 @@ namespace Fungus if (block == null) { - Debug.LogError("Block " + blockName + "does not exist"); + Debug.LogError("Block " + blockName + " does not exist"); return; } @@ -1369,4 +1369,4 @@ namespace Fungus #endregion } -} \ No newline at end of file +}