From 4cd130f140655f8741da93b1aa6c7bc7a2ce6d41 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Thu, 11 Apr 2024 10:20:28 +0200 Subject: Fix forge overlay not working when empty forges are hidden (#1079) --- .../notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt index 5c493108..7ff2f3a3 100644 --- a/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt @@ -124,7 +124,7 @@ object TablistAPI { COMMISSIONS(null), SKILLS(null), TRAPPER(null), - FORGE(Regex.fromLiteral("Forges:")), + FORGE(Regex("Forges:( \\(\\d/\\d\\))?")), POWDER(Regex.fromLiteral("Powders:")), PROFILE(Regex("Profile: ([A-Za-z]+)( .*)?")) ; -- cgit