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)