mirror of
https://github.com/BentoBoxWorld/Level.git
synced 2024-12-23 09:37:36 +01:00
Add protection around unknown blockconfig.yml entries. GRASS>SHORT_GRASS
This commit is contained in:
parent
82174649b4
commit
5f83a81f18
@ -60,10 +60,16 @@ public class BlockConfig {
|
|||||||
if (bWorld != null) {
|
if (bWorld != null) {
|
||||||
ConfigurationSection worldValues = worlds.getConfigurationSection(world);
|
ConfigurationSection worldValues = worlds.getConfigurationSection(world);
|
||||||
for (String material : Objects.requireNonNull(worldValues).getKeys(false)) {
|
for (String material : Objects.requireNonNull(worldValues).getKeys(false)) {
|
||||||
Material mat = Material.valueOf(material);
|
try {
|
||||||
Map<Material, Integer> values = worldBlockValues.getOrDefault(bWorld, new EnumMap<>(Material.class));
|
Material mat = Material.valueOf(material);
|
||||||
values.put(mat, worldValues.getInt(material));
|
Map<Material, Integer> values = worldBlockValues.getOrDefault(bWorld,
|
||||||
worldBlockValues.put(bWorld, values);
|
new EnumMap<>(Material.class));
|
||||||
|
values.put(mat, worldValues.getInt(material));
|
||||||
|
worldBlockValues.put(bWorld, values);
|
||||||
|
} catch (Exception e) {
|
||||||
|
addon.logError(
|
||||||
|
"Unknown material (" + material + ") in blockconfig.yml worlds section. Skipping...");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
addon.logWarning("Level Addon: No such world in blockconfig.yml : " + world);
|
addon.logWarning("Level Addon: No such world in blockconfig.yml : " + world);
|
||||||
@ -97,7 +103,7 @@ public class BlockConfig {
|
|||||||
Material mat = Material.valueOf(material);
|
Material mat = Material.valueOf(material);
|
||||||
bl.put(mat, limits.getInt(material, 0));
|
bl.put(mat, limits.getInt(material, 0));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
addon.logWarning("Unknown material (" + material + ") in blockconfig.yml Limits section. Skipping...");
|
addon.logError("Unknown material (" + material + ") in blockconfig.yml Limits section. Skipping...");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return bl;
|
return bl;
|
||||||
|
@ -287,7 +287,7 @@ blocks:
|
|||||||
GRANITE_SLAB: 1
|
GRANITE_SLAB: 1
|
||||||
GRANITE_STAIRS: 1
|
GRANITE_STAIRS: 1
|
||||||
GRANITE_WALL: 1
|
GRANITE_WALL: 1
|
||||||
GRASS: 4
|
SHORT_GRASS: 4
|
||||||
GRASS_BLOCK: 4
|
GRASS_BLOCK: 4
|
||||||
GRAVEL: 1
|
GRAVEL: 1
|
||||||
GRAY_BANNER: 2
|
GRAY_BANNER: 2
|
||||||
|
Loading…
Reference in New Issue
Block a user