Simplified some calculations #4

Merged
CyB3RC0nN0R merged 3 commits from feature/simplification into develop 2020-07-01 14:38:31 +02:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 9131d0e2fd - Show all commits

View File

@ -76,8 +76,7 @@ public class FoodFactory {
* @since Snake 1.0
*/
public Food generateFood() {
int n = new Random().nextInt(Food.values().length + 1);
nextFood = n == Food.values().length ? generateFood() : Food.values()[n];
nextFood = Food.values()[new Random().nextInt(Food.values().length)];
rectangleSize = nextFood.ordinal() + 2;
setTimeToNextFoodMillis();
return nextFood;