Add Mekanism to model bake event helper
This commit is contained in:
parent
d76fd84b76
commit
aee0b2a47d
|
|
@ -29,7 +29,11 @@ import java.util.function.BiFunction;
|
||||||
*/
|
*/
|
||||||
public class ModelBakeEventHelper {
|
public class ModelBakeEventHelper {
|
||||||
// TODO: make into config option
|
// TODO: make into config option
|
||||||
private static final Set<String> INCOMPATIBLE_MODS = ImmutableSet.of("industrialforegoing", "vampirism", "elevatorid");
|
private static final Set<String> INCOMPATIBLE_MODS = ImmutableSet.of(
|
||||||
|
"industrialforegoing",
|
||||||
|
"mekanism",
|
||||||
|
"vampirism",
|
||||||
|
"elevatorid");
|
||||||
private final Map<ResourceLocation, BakedModel> modelRegistry;
|
private final Map<ResourceLocation, BakedModel> modelRegistry;
|
||||||
private final Set<ResourceLocation> topLevelModelLocations;
|
private final Set<ResourceLocation> topLevelModelLocations;
|
||||||
private final MutableGraph<String> dependencyGraph;
|
private final MutableGraph<String> dependencyGraph;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user