diff options
author | Linnea Gräf <nea@nea.moe> | 2024-04-11 10:20:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-11 10:20:28 +0200 |
commit | 4cd130f140655f8741da93b1aa6c7bc7a2ce6d41 (patch) | |
tree | 5c266ab5a8cdf0dcaf13b76d60ebf6c9eaebe8e3 /src/main/kotlin | |
parent | b91093d711b6f3474300ae18fb8d58a52ed10801 (diff) | |
download | NotEnoughUpdates-4cd130f140655f8741da93b1aa6c7bc7a2ce6d41.tar.gz NotEnoughUpdates-4cd130f140655f8741da93b1aa6c7bc7a2ce6d41.tar.bz2 NotEnoughUpdates-4cd130f140655f8741da93b1aa6c7bc7a2ce6d41.zip |
Fix forge overlay not working when empty forges are hidden (#1079)
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/io/github/moulberry/notenoughupdates/miscfeatures/tablisttutorial/TablistAPI.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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]+)( .*)?")) ; |