Less Small Pieces #52

Merged
tonitch merged 1 commits from LessSmallPieces into master 2023-05-14 21:03:10 +02:00
Showing only changes of commit 3dd1b6b059 - Show all commits

View File

@ -63,7 +63,7 @@ public class MapGenerator {
while (EmptySlots.size() > 0){
Collections.shuffle(EmptySlots);
Vec2 selected = EmptySlots.get(0);
int size = rand.nextInt(3)+1;
int size = 3;
boolean[][] shape = new boolean[size][size];
for(int i = 0; i < size; i++){
for (int j = 0; j < size; j++) {