mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Fixes #2784
This commit is contained in:
parent
d75cfeda0a
commit
1fe6731274
1 changed files with 1 additions and 1 deletions
|
@ -432,7 +432,7 @@ Phaser.Group.prototype.add = function (child, silent, index) {
|
||||||
*/
|
*/
|
||||||
Phaser.Group.prototype.addAt = function (child, index, silent) {
|
Phaser.Group.prototype.addAt = function (child, index, silent) {
|
||||||
|
|
||||||
this.add(child, silent, index);
|
return this.add(child, silent, index);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue