mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-31 01:44:45 +07:00
Settlers can no longer found city when out of moves
This commit is contained in:
parent
5253474ba4
commit
0715f4b855
@ -379,7 +379,8 @@ public class WorldScreen extends com.unciv.game.utils.CameraStageBaseScreen {
|
||||
}
|
||||
});
|
||||
|
||||
if(game.civInfo.tileMap.getTilesInDistance(selectedTile.position,2).any(new Predicate<TileInfo>() {
|
||||
if(selectedTile.unit.currentMovement==0 ||
|
||||
game.civInfo.tileMap.getTilesInDistance(selectedTile.position,2).any(new Predicate<TileInfo>() {
|
||||
@Override
|
||||
public boolean evaluate(TileInfo arg0) {
|
||||
return arg0.isCityCenter();
|
||||
|
Loading…
Reference in New Issue
Block a user