This commit is contained in:
Yair Morgenstern 2020-02-09 20:44:52 +02:00
parent 26affe7943
commit 86cd158d83
3 changed files with 19 additions and 3 deletions

View file

@ -33,8 +33,8 @@ allprojects {
version = '1.0.1'
ext {
appName = "Unciv"
appCodeNumber = 375
appVersion = "3.5.11"
appCodeNumber = 376
appVersion = "3.5.12"
gdxVersion = '1.9.10'
roboVMVersion = '2.3.1'

View file

@ -1,3 +1,19 @@
## 3.5.12
Mongolian civ added! - by reversi
By Jack Rainy:
- Improvements to the Diplomacy overview: better spread and can select specific civs
- Research screen centered on current tech
Resolved #1859 - skip defeated players' turns in multiplayer
Fixed bug where air units in transports couldn't upgrade
Tied the unit upkeep scaling to game speed - by lyrjie
Translation updates
## 3.5.11
Rectangular maps and better map generation - by reversi

View file

@ -84,7 +84,7 @@ class GameInfo {
|| UncivGame.Current.simulateUntilTurnForDebug > turns
// For multiplayer, if there are 3+ players and one is defeated,
// we'll want to skip over their turn
|| thisPlayer.isDefeated()
|| (thisPlayer.isDefeated() && gameParameters.isOnlineMultiplayer)
) {
if (!thisPlayer.isDefeated() || thisPlayer.isBarbarian()) {
NextTurnAutomation().automateCivMoves(thisPlayer)