Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions src/org/flixel/FlxGroup.as
Original file line number Diff line number Diff line change
Expand Up @@ -573,21 +573,12 @@ package org.flixel
}

/**
* Calls revive on the group itself and then on the group's members.
* Calls revive on the group object. <i>Note: Does not revive any of the members!</i>
*/
override public function revive():void
{
// Revive the group itself
super.revive();

var basic:FlxBasic;
var i:uint = 0;
while(i < length)
{
basic = members[i++] as FlxBasic;
if((basic != null) && !basic.alive)
basic.revive();
}
}

/**
Expand Down