mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-01-16 12:41:19 +01:00
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
This commit is contained in:
parent
5b19e2e9d2
commit
f9879be439
@ -451,6 +451,8 @@ public class Config extends AutoUpdateConfigLoader {
|
|||||||
public boolean getDoubleDropsDisabled(SkillType skill) {
|
public boolean getDoubleDropsDisabled(SkillType skill) {
|
||||||
String skillName = StringUtils.getCapitalized(skill.toString());
|
String skillName = StringUtils.getCapitalized(skill.toString());
|
||||||
ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
|
ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
|
||||||
|
if (section == null)
|
||||||
|
return false;
|
||||||
Set<String> keys = section.getKeys(false);
|
Set<String> keys = section.getKeys(false);
|
||||||
boolean disabled = true;
|
boolean disabled = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user