From 39f997faf1d5accb3917633aa8540ba0a28e2705 Mon Sep 17 00:00:00 2001 From: AlexTheCoder Date: Thu, 4 May 2017 18:30:39 -0400 Subject: [PATCH] Give ProgressiveKits the ability to not use xp or use crowns instead of gems for leveling --- .../src/mineplex/core/progression/ProgressiveKit.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/progression/ProgressiveKit.java b/Plugins/Mineplex.Core/src/mineplex/core/progression/ProgressiveKit.java index 395bd428d..05c48e0b7 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/progression/ProgressiveKit.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/progression/ProgressiveKit.java @@ -285,4 +285,14 @@ public interface ProgressiveKit ViewDist.NORMAL, displayTo); } } + + default boolean usesXp() + { + return true; + } + + default boolean crownsEnabled() + { + return false; + } } \ No newline at end of file