Merge pull request 'Random rotation to generated maps' (#83) from randomPieceRotation into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #83
Reviewed-by: Mat_02 <diletomatteo@gmail.com>
This commit is contained in:
Debucquoy Anthony 2023-05-20 12:31:53 +02:00
commit 35c7ecf471

View File

@ -93,7 +93,9 @@ public class MapGenerator {
} }
} }
} }
ret.addPiece(new Piece(shape)); Piece piece = new Piece(shape);
piece.RotateRight(rand.nextInt(4));
ret.addPiece(piece);
} }
//generate pieces //generate pieces