diff --git a/android/Images/OtherIcons/Border.png b/android/Images/OtherIcons/Border.png deleted file mode 100644 index bda3ad4d83..0000000000 Binary files a/android/Images/OtherIcons/Border.png and /dev/null differ diff --git a/core/src/com/unciv/ui/tilegroups/TileGroup.kt b/core/src/com/unciv/ui/tilegroups/TileGroup.kt index 2e742ff2e3..7126628079 100644 --- a/core/src/com/unciv/ui/tilegroups/TileGroup.kt +++ b/core/src/com/unciv/ui/tilegroups/TileGroup.kt @@ -779,12 +779,9 @@ open class TileGroup(var tileInfo: TileInfo, var tileSetStrings:TileSetStrings, } } - fun showCircle(color: Color, alpha: Float = 0.3f, number: Int = -1) { + fun showCircle(color: Color, alpha: Float = 0.3f) { circleImage.isVisible = true circleImage.color = color.cpy().apply { a = alpha } - - if (number >= 0) - miscLayerGroup.addActor(number.toLabel()) } fun hideCircle() { circleImage.isVisible = false }