mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 05:06:45 +01:00
fix big oopsie
This commit is contained in:
parent
4ba85aa444
commit
f0973f2500
@ -35,23 +35,22 @@ public class ExperienceConfig extends BukkitConfig {
|
|||||||
public static ExperienceConfig getInstance() {
|
public static ExperienceConfig getInstance() {
|
||||||
if (instance == null) {
|
if (instance == null) {
|
||||||
instance = new ExperienceConfig();
|
instance = new ExperienceConfig();
|
||||||
}
|
for (PrimarySkillType skill : PrimarySkillType.values()) {
|
||||||
|
// Skip child skills
|
||||||
for (PrimarySkillType skill : PrimarySkillType.values()) {
|
if (isChildSkill(skill)) {
|
||||||
// Skip child skills
|
continue;
|
||||||
if (isChildSkill(skill)) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
final Map<Material, Integer> experienceMap = new HashMap<>();
|
|
||||||
for (Material material : Material.values()) {
|
|
||||||
int xp = instance.getConfigXp(skill, material);
|
|
||||||
|
|
||||||
if (xp > 0) {
|
|
||||||
experienceMap.put(material, xp);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
final Map<Material, Integer> experienceMap = new HashMap<>();
|
||||||
|
for (Material material : Material.values()) {
|
||||||
|
int xp = instance.getConfigXp(skill, material);
|
||||||
|
|
||||||
|
if (xp > 0) {
|
||||||
|
experienceMap.put(material, xp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
instance.blockExperienceMap.put(skill, experienceMap);
|
||||||
}
|
}
|
||||||
instance.blockExperienceMap.put(skill, experienceMap);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return instance;
|
return instance;
|
||||||
|
Loading…
Reference in New Issue
Block a user