Less Small Pieces
This commit is contained in:
		@ -63,7 +63,7 @@ public class MapGenerator {
 | 
				
			|||||||
        while (EmptySlots.size() > 0){
 | 
					        while (EmptySlots.size() > 0){
 | 
				
			||||||
            Collections.shuffle(EmptySlots);
 | 
					            Collections.shuffle(EmptySlots);
 | 
				
			||||||
            Vec2 selected = EmptySlots.get(0);
 | 
					            Vec2 selected = EmptySlots.get(0);
 | 
				
			||||||
            int size = rand.nextInt(3)+1;
 | 
					            int size = 3;
 | 
				
			||||||
            boolean[][] shape = new boolean[size][size];
 | 
					            boolean[][] shape = new boolean[size][size];
 | 
				
			||||||
            for(int i = 0; i < size; i++){
 | 
					            for(int i = 0; i < size; i++){
 | 
				
			||||||
                for (int j = 0; j < size; j++) {
 | 
					                for (int j = 0; j < size; j++) {
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user