diff --git a/src/main/java/biomesoplenty/common/block/BlockBOPFlower.java b/src/main/java/biomesoplenty/common/block/BlockBOPFlower.java index 0085ab870..f5cc35a3c 100644 --- a/src/main/java/biomesoplenty/common/block/BlockBOPFlower.java +++ b/src/main/java/biomesoplenty/common/block/BlockBOPFlower.java @@ -34,8 +34,6 @@ import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; -// TODO: Readd eyebulb in as a seperate block -// TODO: placing lily of the valley. where is lily flower? public class BlockBOPFlower extends BlockDecoration { diff --git a/src/main/java/biomesoplenty/common/block/BlockCoral.java b/src/main/java/biomesoplenty/common/block/BlockCoral.java index 586480462..f38541461 100644 --- a/src/main/java/biomesoplenty/common/block/BlockCoral.java +++ b/src/main/java/biomesoplenty/common/block/BlockCoral.java @@ -25,7 +25,6 @@ import net.minecraft.world.World; public class BlockCoral extends BlockDecoration { - // TODO: Readd kelp public static enum CoralType implements IStringSerializable { PINK, ORANGE, BLUE, GLOWING, ALGAE; diff --git a/src/main/java/biomesoplenty/common/init/ModCrafting.java b/src/main/java/biomesoplenty/common/init/ModCrafting.java index 81e2d7057..22e837a5c 100644 --- a/src/main/java/biomesoplenty/common/init/ModCrafting.java +++ b/src/main/java/biomesoplenty/common/init/ModCrafting.java @@ -322,7 +322,7 @@ public class ModCrafting OreDictionary.registerOre("treeSapling", BlockBOPSapling.paging.getVariantItem(tree)); } } - // TODO ? + // TODO: implement fruit trees // OreDictionary.registerOre("treeLeaves", new ItemStack(BOPCBlocks.appleLeaves, 1, OreDictionary.WILDCARD_VALUE)); // OreDictionary.registerOre("treeLeaves", new ItemStack(BOPCBlocks.persimmonLeaves, 1, OreDictionary.WILDCARD_VALUE)); diff --git a/src/main/java/biomesoplenty/common/item/ItemBOPScythe.java b/src/main/java/biomesoplenty/common/item/ItemBOPScythe.java index 471d212c1..edbedc820 100644 --- a/src/main/java/biomesoplenty/common/item/ItemBOPScythe.java +++ b/src/main/java/biomesoplenty/common/item/ItemBOPScythe.java @@ -27,7 +27,8 @@ import net.minecraftforge.fml.relauncher.SideOnly; public class ItemBOPScythe extends Item { - + + // TODO: figure out how to make this eligibile for enchantments (at the moment you seem to get only unbreaking - fortune also makes sense) protected Item.ToolMaterial toolMaterial; public ItemBOPScythe(Item.ToolMaterial material) diff --git a/src/main/java/biomesoplenty/common/world/WorldChunkManagerBOP.java b/src/main/java/biomesoplenty/common/world/WorldChunkManagerBOP.java index 67afdb8ff..9fedaa538 100644 --- a/src/main/java/biomesoplenty/common/world/WorldChunkManagerBOP.java +++ b/src/main/java/biomesoplenty/common/world/WorldChunkManagerBOP.java @@ -38,6 +38,10 @@ import net.minecraft.world.gen.layer.GenLayerZoom; public class WorldChunkManagerBOP extends WorldChunkManager { + // TODO: ability to vary landmass creation - eg continents, archipelago etc + // TODO: figure out how ice spikes work + + public WorldChunkManagerBOP(long seed, WorldType worldType, String chunkProviderSettings) { super(); diff --git a/src/main/java/biomesoplenty/common/world/layer/GenLayerHillsBOP.java b/src/main/java/biomesoplenty/common/world/layer/GenLayerHillsBOP.java index 147305501..3916c9f2d 100644 --- a/src/main/java/biomesoplenty/common/world/layer/GenLayerHillsBOP.java +++ b/src/main/java/biomesoplenty/common/world/layer/GenLayerHillsBOP.java @@ -16,6 +16,7 @@ import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; // This is the same as vanilla minecraft's GenLayerHills code, just de-obfuscated a bit - might change it slightly later to support hilly versions of BOP biomes +// TODO: use this for BOP sub-biomes public class GenLayerHillsBOP extends GenLayer { private static final Logger logger = LogManager.getLogger();