diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-14 10:31:29 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-14 10:31:29 +0200 |
commit | bfae99cb54988568b2752c7d6a8d3d5babed1bbc (patch) | |
tree | ec1114375b045204ed36ba7a7792196553aed30e /src/main/java | |
parent | c0bdbf7305d30012bf37f229e60a513cb5ee45a0 (diff) | |
download | skyhanni-bfae99cb54988568b2752c7d6a8d3d5babed1bbc.tar.gz skyhanni-bfae99cb54988568b2752c7d6a8d3d5babed1bbc.tar.bz2 skyhanni-bfae99cb54988568b2752c7d6a8d3d5babed1bbc.zip |
Fixed the selected drop in the catacombs rng meter inventory no longer gets highlighted.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/inventory/RngMeterInventory.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/RngMeterInventory.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/RngMeterInventory.kt index 697ca0ba9..df8157638 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/RngMeterInventory.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/RngMeterInventory.kt @@ -46,7 +46,7 @@ class RngMeterInventory { if (SkyHanniMod.feature.inventory.rngMeterSelectedDrop && chestName.endsWith(" RNG Meter")) { for (slot in InventoryUtils.getItemsInOpenChest()) { val stack = slot.stack - if (stack.getLore().any { it.contains("§aSELECTED") }) { + if (stack.getLore().any { it.contains("§a§lSELECTED") }) { slot highlight LorenzColor.YELLOW } } |