mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 14:38:30 +00:00
Merge pull request #4449 from kyranet/patch-2
fix: Inconsistent return in TweenManager#makeActive()
This commit is contained in:
commit
bc10276b9e
1 changed files with 1 additions and 1 deletions
|
@ -411,7 +411,7 @@ var TweenManager = new Class({
|
|||
{
|
||||
if (this._add.indexOf(tween) !== -1 || this._active.indexOf(tween) !== -1)
|
||||
{
|
||||
return;
|
||||
return this;
|
||||
}
|
||||
|
||||
var idx = this._pending.indexOf(tween);
|
||||
|
|
Loading…
Add table
Reference in a new issue