diff --git a/src/org/flixel/FlxGroup.as b/src/org/flixel/FlxGroup.as index 37051c71..d8ffe6f4 100644 --- a/src/org/flixel/FlxGroup.as +++ b/src/org/flixel/FlxGroup.as @@ -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. Note: Does not revive any of the members! */ 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(); - } } /**