3.5.12
This commit is contained in:
parent
26affe7943
commit
86cd158d83
3 changed files with 19 additions and 3 deletions
|
@ -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'
|
||||
|
|
16
changelog.md
16
changelog.md
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue