diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-26 15:46:54 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-26 15:46:54 +0100 |
| commit | a5540841c951f2f694cf48f8dd093f69e9d36c44 (patch) | |
| tree | bfe652984b93789a98e699793baf16776acb9fdc /src/main/java/at/hannibal2/skyhanni/features/commands | |
| parent | 69b7a4688ed84b89b21545ebb382cf8a4f57307c (diff) | |
| download | skyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.tar.gz skyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.tar.bz2 skyhanni-a5540841c951f2f694cf48f8dd093f69e9d36c44.zip | |
code cleanup
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/commands')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt b/src/main/java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt index 147775fed..c486f6f50 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt @@ -22,7 +22,7 @@ object ViewRecipeCommand { val list by lazy { val list = mutableListOf<String>() - for ((key, value) in NEUItems.manager.itemInformation) { + for ((key, value) in NEUItems.allNeuRepoItems()) { if (value.has("recipe")) { list.add(key.lowercase()) } |
