Quote:
Originally Posted by yedidya03
...
the command group was :
Code:
public class DropAndCollect extends CommandGroup{
public DropAndCollect() {
// TODO Auto-generated constructor stub
addSequential(new DropAndCollect());
addSequential(new Collect());
}
}
...
|
The first addSequential is using the wrong class. As you have it, it will result in an infinite loop creating many nested DropAndCollect instances.
Hope this helps,
Steve