fix minor issues

This commit is contained in:
dfsek
2021-01-13 17:10:29 -07:00
parent d1c018690d
commit e04d363123
2 changed files with 1 additions and 1 deletions

View File

@@ -12,7 +12,6 @@ public class TerraBiomeHolder implements BiomeHolder {
private TerraBiome[][] biomes;
public TerraBiomeHolder(int width, Vector2 origin) {
if(width % 2 == 0) throw new IllegalArgumentException();
this.width = width;
biomes = new TerraBiome[width][width];
this.origin = origin;