Merge pull request #3592 from samme/fix/group-get-handler

Fix incorrect `active` state selection in Group#getHandler
This commit is contained in:
Richard Davey 2018-04-18 22:37:22 +01:00 committed by GitHub
commit 973d8ecac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -836,6 +836,10 @@ var Group = new Class({
break;
}
}
else
{
gameObject = null;
}
}
}
else
@ -853,6 +857,10 @@ var Group = new Class({
break;
}
}
else
{
gameObject = null;
}
}
}