diff --git a/src/core/Group.js b/src/core/Group.js index 87ae200c..47afdd89 100644 --- a/src/core/Group.js +++ b/src/core/Group.js @@ -680,7 +680,7 @@ Phaser.Group.prototype.callAll = function (method, context) { var methodLength = method.length; - if (typeof context === 'undefined') + if (typeof context === 'undefined' || context === null || context === '') { context = null; }