Meteor world gen (#4409)

Start doing meteor world gen things
This commit is contained in:
Eutro
2020-06-12 10:36:45 +01:00
committed by GitHub
parent ae69ad6d8a
commit 65482357f7
33 changed files with 1099 additions and 1072 deletions
@@ -24,6 +24,7 @@
package appeng.api.features;
import net.minecraft.util.ResourceLocation;
import net.minecraft.world.World;
import net.minecraft.world.dimension.Dimension;
@@ -33,9 +34,9 @@ public interface IWorldGen
void disableWorldGenForProviderID( WorldGenType type, Class<? extends Dimension> provider );
void enableWorldGenForDimension( WorldGenType type, int dimID );
void enableWorldGenForDimension( WorldGenType type, ResourceLocation dimID );
void disableWorldGenForDimension( WorldGenType type, int dimID );
void disableWorldGenForDimension( WorldGenType type, ResourceLocation dimID );
boolean isWorldGenEnabled( WorldGenType type, World w );