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" applicationId "com.unciv.game"
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 26 targetSdkVersion 26
versionCode 145 versionCode 146
versionName "2.9.0" versionName "2.9.0.1"
} }
buildTypes { buildTypes {
release { release {

View File

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