Skip to content

Commit

Permalink
Fix the NODE,*:HAS[xxxx] reported by NathanKell
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed Feb 17, 2015
1 parent c485958 commit a41e31c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion moduleManager.cs
Expand Up @@ -1389,7 +1389,8 @@ public ConfigNode ModifyNode(ConfigNode original, ConfigNode mod)
constraints = subName.Substring(start + 5, subName.LastIndexOf(']') - start - 5);
subName = subName.Substring(0, start);
}
else if (subName.Contains(","))

if (subName.Contains(","))
{
tag = subName.Split(',')[1];
subName = subName.Split(',')[0];
Expand Down

0 comments on commit a41e31c

Please sign in to comment.