Tidy up the TODO list

This commit is contained in:
Cheeserolls 2015-05-28 15:38:09 +01:00
parent e07420ae52
commit d56900ef9d
6 changed files with 8 additions and 5 deletions

View File

@ -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
{

View File

@ -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;

View File

@ -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));

View File

@ -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)

View File

@ -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();

View File

@ -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();