Fixed "switch without 'default' clause." issue

This commit is contained in:
yesji 2019-10-06 14:52:38 +05:30 committed by GitHub
parent a15285f348
commit ed85b0a06e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -156,6 +156,9 @@ public class VaultWorldGenerator {
map.setTileAt(floorTile, 1, worldSize / 2 - 1);
roomCenters.add(new Point(1, worldSize / 2 - 1));
break;
default:
break;
}
}