26 lines
653 B
Java
26 lines
653 B
Java
package ru.betterend.integration.byg;
|
|
|
|
import ru.bclib.integration.ModIntegration;
|
|
import ru.betterend.integration.EndBiomeIntegration;
|
|
|
|
public class BYGIntegration extends ModIntegration implements EndBiomeIntegration {
|
|
public BYGIntegration() {
|
|
super("byg");
|
|
}
|
|
|
|
@Override
|
|
public void init() {
|
|
/*Block block = Integrations.BYG.getBlock("ivis_phylium");
|
|
if (block != null) {
|
|
TagAPI.addTags(block, CommonBlockTags.END_STONES, CommonBlockTags.GEN_END_STONES);
|
|
}
|
|
BYGBlocks.register();
|
|
BYGFeatures.register();
|
|
BYGBiomes.register();*/
|
|
}
|
|
|
|
@Override
|
|
public void addBiomes() {
|
|
//BYGBiomes.addBiomes();
|
|
}
|
|
}
|