Browse Source

Missing space in log statements

master
ArkAngel Apps 6 years ago committed by GitHub
parent
commit
cced139c2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      Assets/Fungus/Scripts/Components/Flowchart.cs

4
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");
}
}

Loading…
Cancel
Save