Opps forgot to fix a rogue filter which caused the lib to crash.

This commit is contained in:
photonstorm
2013-11-21 05:31:23 +00:00
parent 496639ff25
commit b286093093
6 changed files with 521 additions and 393 deletions
+5 -3
View File
@@ -92,11 +92,13 @@ Phaser.World.prototype.update = function () {
skipChildren = (currentNode.update() === false) || skipChildren;
}
if(skipChildren)
if (skipChildren)
{
currentNode = currentNode.last._iNext;
} else {
currentNode = currentNode._iNext;
}
else
{
currentNode = currentNode._iNext;
}
}