PickNatchen

Results 3 issues of PickNatchen

In the .advance() method of the Pea class, there is a line that is meant to remove the Pea. The line is: gp.getLaneZombies().get(myLane).remove(this); This should instead be gp.getLanePeas().get(myLane).remove(this); Currently peas...

The FreezePea class moves to the left, because the xPos is decremented. It should instead be incremented.

We have added testing to this project. There were additional classes created, but we used standard testing practices to be able to put some of these classes under a test...