mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-25 20:16:00 +01:00
Disable autogeneration missing-config logs because they might be misleading in what they do
This commit is contained in:
parent
4fc9215f4d
commit
8efc23e6a1
@ -147,8 +147,7 @@ public void loadResourceConfigs(File configFolder, ResourcePack resourcePack) th
|
||||
);
|
||||
blockIdsConfigNode = joinFromResourcePack(resourcePack, "blockIds.json", blockIdsConfigNode);
|
||||
blockIdConfig = new BlockIdConfig(
|
||||
blockIdsConfigNode,
|
||||
getLoader(makeAutogen(blockIdsConfigFile))
|
||||
blockIdsConfigNode
|
||||
);
|
||||
|
||||
//load blockProperties.json from resources, config-folder and resourcepack
|
||||
@ -164,8 +163,7 @@ public void loadResourceConfigs(File configFolder, ResourcePack resourcePack) th
|
||||
blockPropertiesConfigNode = joinFromResourcePack(resourcePack, "blockProperties.json", blockPropertiesConfigNode);
|
||||
blockPropertiesConfig = new BlockPropertiesConfig(
|
||||
blockPropertiesConfigNode,
|
||||
resourcePack,
|
||||
getLoader(makeAutogen(blockPropertiesConfigFile))
|
||||
resourcePack
|
||||
);
|
||||
|
||||
//load biomes.json from resources, config-folder and resourcepack
|
||||
@ -180,8 +178,7 @@ public void loadResourceConfigs(File configFolder, ResourcePack resourcePack) th
|
||||
);
|
||||
biomeConfigNode = joinFromResourcePack(resourcePack, "biomes.json", biomeConfigNode);
|
||||
biomeConfig = new BiomeConfig(
|
||||
biomeConfigNode,
|
||||
getLoader(makeAutogen(biomeConfigFile))
|
||||
biomeConfigNode
|
||||
);
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user