From 07262f6026b40c0a66bf60dd869d90a73640c183 Mon Sep 17 00:00:00 2001 From: yairm210 Date: Mon, 9 Dec 2024 19:55:20 +0200 Subject: [PATCH] Removed 'ignore touhidurr notifications' --- .../com/unciv/ui/screens/worldscreen/NotificationsScroll.kt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/src/com/unciv/ui/screens/worldscreen/NotificationsScroll.kt b/core/src/com/unciv/ui/screens/worldscreen/NotificationsScroll.kt index 401e25ad74..6fc8013b03 100644 --- a/core/src/com/unciv/ui/screens/worldscreen/NotificationsScroll.kt +++ b/core/src/com/unciv/ui/screens/worldscreen/NotificationsScroll.kt @@ -204,8 +204,6 @@ class NotificationsScroll( Align.bottomRight) } - private val serverIconsToIgnore = hashSetOf("NotificationIcons/RobotArm", "NotificationIcons/ServerRack", "NotificationIcons/DollarSign") - private fun updateContent( notifications: List, coveredNotificationsTop: Float, @@ -266,9 +264,6 @@ class NotificationsScroll( notificationsTable.add(header).right().row() } for (notification in categoryNotifications) { - if (worldScreen.gameInfo.turns % 10 != 0 // Allow touhidurrr notifications every 10 turns - && notification.icons.any { it in serverIconsToIgnore }) continue - val item = ListItem(notification, backgroundDrawable) itemWidths.add(item.itemWidth) val itemCell = notificationsTable.add(item)