diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-08-05 12:59:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 20:59:37 +1000 |
commit | 6d7bd24771e4d09fb0a68b7d556d12d5690bbc06 (patch) | |
tree | 94a9e86ccf58c8f558f60d35ffe0ae921fa592aa | |
parent | 247239132ad481d5ba9d775e723e134ca116837e (diff) | |
download | NotEnoughUpdates-6d7bd24771e4d09fb0a68b7d556d12d5690bbc06.tar.gz NotEnoughUpdates-6d7bd24771e4d09fb0a68b7d556d12d5690bbc06.tar.bz2 NotEnoughUpdates-6d7bd24771e4d09fb0a68b7d556d12d5690bbc06.zip |
Added unique rune to the itemresolutionquery (#801)
-rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/util/ItemResolutionQuery.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/util/ItemResolutionQuery.java b/src/main/java/io/github/moulberry/notenoughupdates/util/ItemResolutionQuery.java index cf508a33..2cccce72 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/util/ItemResolutionQuery.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/util/ItemResolutionQuery.java @@ -110,6 +110,7 @@ public class ItemResolutionQuery { resolvedName = resolvePetName(); break; case "RUNE": + case "UNIQUE_RUNE": resolvedName = resolveRuneName(); break; case "ENCHANTED_BOOK": |