Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
barnstee committed May 7, 2024
1 parent 8a00e54 commit 8219542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UANodeManager.cs
Expand Up @@ -453,7 +453,7 @@ private bool CreateAssetNode(string assetName, out NodeState assetNode)
int i = 0;
while (i < _uaVariables.Count)
{
if (_uaVariables.Keys.ToArray()[i].StartsWith(assetName))
if (_uaVariables.Keys.ToArray()[i].StartsWith(assetName + ":"))
{
_uaVariables.Remove(_uaVariables.Keys.ToArray()[i]);
}
Expand Down

0 comments on commit 8219542

Please sign in to comment.