aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/diana/DianaAPI.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/DianaAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/DianaAPI.kt
index ce3d8ba46..950f15f2b 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/DianaAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/DianaAPI.kt
@@ -7,7 +7,8 @@ import at.hannibal2.skyhanni.utils.InventoryUtils
object DianaAPI {
fun hasSpadeInHand() = InventoryUtils.itemInHandId.equals("ANCESTRAL_SPADE")
- fun isRitualActive() = MayorElection.isPerkActive("Diana", "Mythological Ritual")
+ fun isRitualActive() = MayorElection.isPerkActive("Diana", "Mythological Ritual") ||
+ MayorElection.isPerkActive("Jerry", "Perkpocalypse")
fun hasGriffinPet() = ProfileStorageData.profileSpecific?.currentPet?.contains("Griffin") ?: false
} \ No newline at end of file