mirror of
https://github.com/yairm210/Unciv.git
synced 2025-09-24 03:53:12 -04: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
|
@Override
|
||||||
public boolean evaluate(TileInfo arg0) {
|
public boolean evaluate(TileInfo arg0) {
|
||||||
return arg0.isCityCenter();
|
return arg0.isCityCenter();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user