diff options
| author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-02-25 08:15:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-25 08:15:04 +0100 |
| commit | 16d6a47c85be560517505499df1fff6df9582c18 (patch) | |
| tree | 8d23232cac7627cf39595dc6c5006944fd0aaec8 /src/main/java/at/hannibal2/skyhanni/features/misc | |
| parent | 72fb024dc19d83e996a6aaf7cd0dc0183e3a0378 (diff) | |
| download | skyhanni-16d6a47c85be560517505499df1fff6df9582c18.tar.gz skyhanni-16d6a47c85be560517505499df1fff6df9582c18.tar.bz2 skyhanni-16d6a47c85be560517505499df1fff6df9582c18.zip | |
Fixed internal name resolving. #1046
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/CollectionTracker.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/CollectionTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/CollectionTracker.kt index 6e8f746f2..630d4fb83 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/CollectionTracker.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/CollectionTracker.kt @@ -57,7 +57,7 @@ class CollectionTracker { return } - val foundInternalName = NEUItems.getInternalNameOrNullIgnoreCase(rawName) + val foundInternalName = NEUItems.getInternalNameOrNull(rawName) if (foundInternalName == null) { ChatUtils.error("Item '$rawName' does not exist!") return |
