Compare commits

..

No commits in common. "a5fe6860160a540d9839c5faad9c0e8ba440def4" and "c432bf98b79b824b5070c0ab3c493145b68fae93" have entirely different histories.

View File

@ -21,8 +21,7 @@ public class Constructor<T extends EntityAirCraft, U extends IDrawEngine> {
public DrawningAirCraft getRandomAirCraft() {
Random rnd = new Random();
int entityIndex = rnd.nextInt(0, 3);
int entityIndex = rnd.nextInt(0, 2);
int engineIndex = rnd.nextInt(0, 3);
T entity = entitiesList.get(entityIndex);