Fix for missingType(s) - to close #259

(thanks to toksea for spotting it)
This commit is contained in:
Dave C-J 2014-07-08 08:49:48 +01:00
parent 35965e55b5
commit 9bc9994354
1 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ var parseConfig = function() {
}
if (missingTypes.length > 0) {
util.log("[red] Waiting for missing types to be registered:");
for (i=0;i<missingType.length;i++) {
for (i=0;i<missingTypes.length;i++) {
util.log("[red] - "+missingTypes[i]);
}
return;