Refactored code a little - moved stuff around/removed some
warnings/changed some names. Corrected Forestry Integration part.
This commit is contained in:
parent
813c7b8ffc
commit
f1e6102888
229 changed files with 482 additions and 545 deletions
|
@ -6,11 +6,9 @@ import net.minecraft.client.particle.EntityFX;
|
|||
import net.minecraft.client.renderer.entity.RenderSnowball;
|
||||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.client.MinecraftForgeClient;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
import tdwp_ftw.biomesop.items.projectiles.EntityMudball;
|
||||
import cpw.mods.fml.client.registry.RenderingRegistry;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class ClientProxy extends CommonProxy {
|
||||
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
package tdwp_ftw.biomesop;
|
||||
|
||||
import net.minecraft.world.World;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class CommonProxy {
|
||||
public static String ARMOR_MUD1_PNG = "/mods/BiomesOPlenty/textures/armor/mud_1.png";
|
||||
|
|
|
@ -6,9 +6,8 @@ import net.minecraft.item.ItemArmor;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.common.IArmorTextureProvider;
|
||||
import tdwp_ftw.biomesop.CommonProxy;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public class ArmorAmethyst extends ItemArmor implements IArmorTextureProvider
|
||||
{
|
||||
public int textureID = 0;
|
||||
|
|
|
@ -6,9 +6,8 @@ import net.minecraft.item.ItemArmor;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.common.IArmorTextureProvider;
|
||||
import tdwp_ftw.biomesop.CommonProxy;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public class ArmorMuddy extends ItemArmor implements IArmorTextureProvider
|
||||
{
|
||||
public int textureID = 0;
|
||||
|
|
|
@ -43,7 +43,7 @@ import net.minecraftforge.common.MinecraftForge;
|
|||
import net.minecraftforge.event.terraingen.DecorateBiomeEvent;
|
||||
import net.minecraftforge.event.terraingen.OreGenEvent;
|
||||
import net.minecraftforge.event.terraingen.TerrainGen;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAlgae;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAsh;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBoulder;
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Random;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga3;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga4;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga9;
|
||||
|
|
|
@ -4,8 +4,8 @@ import java.awt.Color;
|
|||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenBadlands extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBambooTree;
|
||||
|
||||
public class BiomeGenBambooForest extends BiomeGenBase
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.Random;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBayou1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBayou2;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBayou3;
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenBirchForest extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -9,8 +9,8 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBog1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenBog2;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenCanyonShrub;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenCanyonTree;
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenChaparral1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenChaparral2;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenChaparral3;
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga3;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga4;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga9;
|
||||
|
|
|
@ -3,8 +3,8 @@ package tdwp_ftw.biomesop.biomes;
|
|||
import java.awt.Color;
|
||||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenCrag extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -7,8 +7,8 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree2;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga5;
|
||||
|
|
|
@ -7,8 +7,8 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree;
|
||||
|
||||
public class BiomeGenDeadSwamp extends BiomeGenBase
|
||||
|
|
|
@ -11,8 +11,8 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenMinable;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree3;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadlands;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeciduous;
|
||||
|
||||
public class BiomeGenDeciduousForest extends BiomeGenBase
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.awt.Color;
|
|||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenDunes extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenFen1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenFen2;
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenFrostForest extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMoss;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenSwampTall;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenThickTree;
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.mobs.EntityRosester;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenGiantFlowerRed;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenGiantFlowerYellow;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package tdwp_ftw.biomesop.biomes;
|
||||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenGlacier extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenGrassland extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.entity.monster.EntitySnowman;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenIceTree;
|
||||
|
||||
public class BiomeGenIcyHills extends BiomeGenBase
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenJadeTree;
|
||||
|
||||
public class BiomeGenJadeCliffs extends BiomeGenBase
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
|||
import net.minecraft.world.gen.feature.WorldGenTrees;
|
||||
import net.minecraft.world.gen.feature.WorldGenVines;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.mobs.EntityJungleSpider;
|
||||
|
||||
public class BiomeGenJungleNew extends BiomeGenBase
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Random;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAcacia;
|
||||
|
||||
public class BiomeGenLushDesert extends BiomeGenBase
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMarsh;
|
||||
|
||||
public class BiomeGenMarsh extends BiomeGenBase
|
||||
|
|
|
@ -5,8 +5,8 @@ import java.awt.Color;
|
|||
import net.minecraft.entity.monster.EntitySpider;
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenMesa extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,8 +8,8 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMoor;
|
||||
|
||||
public class BiomeGenMoor extends BiomeGenBase
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMystic1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMystic2;
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenOminous1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenOminous2;
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenOriginTree;
|
||||
|
||||
public class BiomeGenOriginValley extends BiomeGenBase
|
||||
|
|
|
@ -4,7 +4,7 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenOutbackShrub;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenOutbackTree;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import java.util.Random;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenPasture extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenPlainsNew extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPrairie;
|
||||
|
||||
public class BiomeGenPrairie extends BiomeGenBase
|
||||
|
|
|
@ -8,8 +8,8 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenMinable;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPromisedShrub;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPromisedTree;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPromisedTree2;
|
||||
|
|
|
@ -5,8 +5,8 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree;
|
||||
|
||||
public class BiomeGenQuagmire extends BiomeGenBase
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.mobs.EntityJungleSpider;
|
||||
|
||||
public class BiomeGenSacredSprings extends BiomeGenBase
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAcacia;
|
||||
|
||||
public class BiomeGenSavanna extends BiomeGenBase
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAutumn;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenAutumn2;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree2;
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenShrubland extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -6,8 +6,8 @@ import java.util.Random;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenDeadTree2;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTaiga5;
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenSteppe extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenCypress;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMarsh;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.world.gen.feature.WorldGenTaiga1;
|
|||
import net.minecraft.world.gen.feature.WorldGenTaiga2;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BiomeGenTaigaNew extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.world.biome.BiomeGenBase;
|
|||
import net.minecraft.world.gen.feature.WorldGenShrub;
|
||||
import net.minecraft.world.gen.feature.WorldGenTallGrass;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMoss;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenTemperate;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenThickTree;
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.mobs.EntityJungleSpider;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenRainforest1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenRainforest2;
|
||||
|
|
|
@ -6,7 +6,7 @@ import java.util.Random;
|
|||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.mobs.EntityJungleSpider;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPalmTree1;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPalmTree3;
|
||||
|
|
|
@ -5,8 +5,8 @@ import java.util.Random;
|
|||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenVolcano;
|
||||
|
||||
public class BiomeGenVolcano extends BiomeGenBase
|
||||
|
|
|
@ -3,8 +3,8 @@ package tdwp_ftw.biomesop.biomes;
|
|||
import java.awt.Color;
|
||||
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.declarations.BOPConfiguration;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPConfiguration;
|
||||
|
||||
public class BiomeGenWasteland extends BiomeGenBase
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockAcaciaLog extends Block
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
|
||||
public class BlockAcaciaSlab extends BlockHalfSlab
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockAmethystBlock extends Block
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.client.renderer.texture.IconRegister;
|
|||
import net.minecraft.util.MathHelper;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockAmethystOre extends Block
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.entity.Entity;
|
|||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockAsh extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockBamboo extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockBambooThatching extends Block
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.block.material.Material;
|
|||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockBarley extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.ColorizerFoliage;
|
|||
import net.minecraft.world.ColorizerGrass;
|
||||
import net.minecraft.world.IBlockAccess;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockBush extends BlockFlower
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@ import net.minecraft.block.material.Material;
|
|||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.declarations.BOPItems;
|
||||
import tdwp_ftw.biomesop.configuration.BOPItems;
|
||||
|
||||
public class BlockCattail extends Block
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockCherryLog extends Block
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockCherrySlab extends BlockHalfSlab
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockCragRock extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockDarkLog extends Block
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockDarkSlab extends BlockHalfSlab
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.stats.StatList;
|
|||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockDeadGrass extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockDeadLog extends Block
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.stats.StatList;
|
|||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockDesertGrass extends Block
|
||||
{
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockFirLog extends Block
|
||||
{
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
|
||||
public class BlockFirSlab extends BlockHalfSlab
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.block.material.Material;
|
|||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockGiantFlowerRed extends BlockLeavesBase
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockGiantFlowerStem extends Block
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.block.material.Material;
|
|||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockGiantFlowerYellow extends BlockLeavesBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.client.renderer.texture.IconRegister;
|
|||
import net.minecraft.util.AxisAlignedBB;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockGlowFlower extends Block
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ import net.minecraft.client.renderer.texture.IconRegister;
|
|||
import net.minecraft.world.ColorizerFoliage;
|
||||
import net.minecraft.world.ColorizerGrass;
|
||||
import net.minecraft.world.IBlockAccess;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockHighGrassTop extends BlockFlower
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.world.World;
|
|||
import net.minecraft.world.WorldProviderEnd;
|
||||
import net.minecraftforge.common.ForgeDirection;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
//=========================================
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockHolyLog extends Block
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.util.Icon;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenPromisedTree;
|
||||
|
||||
public class BlockHolySapling extends BlockSapling
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockHolySlab extends BlockHalfSlab
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ import net.minecraft.block.Block;
|
|||
import net.minecraft.block.material.Material;
|
||||
import net.minecraft.client.renderer.texture.IconRegister;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockHolyStone extends Block
|
||||
{
|
||||
|
|
|
@ -11,7 +11,7 @@ import net.minecraft.util.AxisAlignedBB;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockHolyTallGrass extends Block implements IShearable
|
||||
{
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.util.Icon;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockMagicLog extends Block
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ import net.minecraft.util.Icon;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraft.world.gen.feature.WorldGenerator;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.worldgen.WorldGenMystic2;
|
||||
|
||||
public class BlockMagicSapling extends BlockSapling
|
||||
|
|
|
@ -10,7 +10,7 @@ import net.minecraft.creativetab.CreativeTabs;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
|
||||
public class BlockMagicSlab extends BlockHalfSlab
|
||||
{
|
||||
|
|
|
@ -15,7 +15,7 @@ import net.minecraft.world.IBlockAccess;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.common.IShearable;
|
||||
import tdwp_ftw.biomesop.mod_BiomesOPlenty;
|
||||
import tdwp_ftw.biomesop.declarations.BOPBlocks;
|
||||
import tdwp_ftw.biomesop.configuration.BOPBlocks;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue