mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
parent
e5e19f77b9
commit
3cff8aba16
@ -4,6 +4,8 @@ import java.util.Set;
|
|||||||
|
|
||||||
import org.bukkit.configuration.ConfigurationSection;
|
import org.bukkit.configuration.ConfigurationSection;
|
||||||
|
|
||||||
|
import com.gmail.nossr50.mcMMO;
|
||||||
|
|
||||||
public class Config extends ConfigLoader {
|
public class Config extends ConfigLoader {
|
||||||
private static Config instance;
|
private static Config instance;
|
||||||
|
|
||||||
@ -394,6 +396,12 @@ public class Config extends ConfigLoader {
|
|||||||
|
|
||||||
private boolean doubleDropsDisabled(String skillName) {
|
private boolean doubleDropsDisabled(String skillName) {
|
||||||
ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
|
ConfigurationSection section = config.getConfigurationSection("Double_Drops." + skillName);
|
||||||
|
|
||||||
|
if (section == null) {
|
||||||
|
mcMMO.p.getLogger().warning("The configuration files are outdated!"); //TODO Locale and more descriptive message!
|
||||||
|
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