Added resources and terrain features back to land-only maps

This commit is contained in:
Yair Morgenstern 2018-10-14 21:07:01 +03:00
parent f6163f3c88
commit ba144be973
2 changed files with 3 additions and 2 deletions

View File

@ -21,8 +21,8 @@ android {
applicationId "com.unciv.game"
minSdkVersion 14
targetSdkVersion 26
versionCode 145
versionName "2.9.0"
versionCode 146
versionName "2.9.0.1"
}
buildTypes {
release {

View File

@ -125,6 +125,7 @@ open class SeedRandomMapGenerator : RandomMapGenerator() {
val mapToReturn = HashMap<String,TileInfo>()
for (entry in map){
randomizeTile(entry.value)
mapToReturn[entry.key.toString()] = entry.value
}