From a5540841c951f2f694cf48f8dd093f69e9d36c44 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 26 Dec 2023 15:46:54 +0100 Subject: code cleanup --- .../java/at/hannibal2/skyhanni/features/commands/ViewRecipeCommand.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/commands') 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() - for ((key, value) in NEUItems.manager.itemInformation) { + for ((key, value) in NEUItems.allNeuRepoItems()) { if (value.has("recipe")) { list.add(key.lowercase()) } -- cgit