Selaa lähdekoodia

Fixed NPE when skill is not in config

When a skill is not configured this would throw an NPE as the section is not found.

Found while trying to get information from an McMMOLevelUp event
Maxim Van de Wynckel 10 vuotta sitten
vanhempi
sitoutus
f9879be439
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      src/main/java/com/gmail/nossr50/config/Config.java

+ 2 - 0
src/main/java/com/gmail/nossr50/config/Config.java

@@ -451,6 +451,8 @@ public class Config extends AutoUpdateConfigLoader {
     public boolean getDoubleDropsDisabled(SkillType skill) {
         String skillName = StringUtils.getCapitalized(skill.toString());
         ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
+        if (section == null)
+            return false;
         Set<String> keys = section.getKeys(false);
         boolean disabled = true;