Prechádzať zdrojové kódy

Add ability to check if any ability is enabled.

GJ 13 rokov pred
rodič
commit
4b93dede33

+ 10 - 0
src/main/java/com/gmail/nossr50/api/AbilityAPI.java

@@ -34,4 +34,14 @@ public class AbilityAPI {
     public static boolean treeFellerEnabled(Player player) {
         return Users.getProfile(player).getAbilityMode(AbilityType.TREE_FELLER);
     }
+
+    public static boolean isAnyAbilityEnabled(Player player) {
+        for (AbilityType ability : AbilityType.values()) {
+            if (Users.getProfile(player).getAbilityMode(ability)) {
+                return true;
+            }
+        }
+
+        return false;
+    }
 }