From 426fb7ed6d266f14ff98c61c5346955b5b3fdc3b Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 5 Feb 2024 11:51:02 +0100 Subject: Show error message when DeepCavernsParkour repo is missing --- .../at/hannibal2/skyhanni/features/mining/DeepCavernsParkour.kt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/DeepCavernsParkour.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/DeepCavernsParkour.kt index 0c08c8b17..18bffb4a4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/DeepCavernsParkour.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/DeepCavernsParkour.kt @@ -100,6 +100,13 @@ class DeepCavernsParkour { private fun start() { show = true parkourHelper?.reset() + if (parkourHelper == null) { + LorenzUtils.clickableChat( + "DeepCavernsParkour missing in SkyHanni Repo! Try /shupdaterepo to fix it!", + "shupdaterepo", + prefixColor = "§c" + ) + } } @SubscribeEvent -- cgit