Merge pull request #317 from hindessm/fix-flows-missing-types-logic

Fix missing types logic.
pull/318/head
Nick O'Leary 2014-07-31 10:01:27 +01:00
commit f4ffdce3d0
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ events.on('type-registered',function(type) {
if (i != -1) {
missingTypes.splice(i,1);
util.log("[red] Missing type registered: "+type);
}
if (missingTypes.length === 0) {
parseConfig();
if (missingTypes.length === 0) {
parseConfig();
}
}
}
});