Moved OreDrop

With a small bit of work we could make an api to get the config values,
then this could go in the api
This commit is contained in:
modmuss50 2015-06-08 17:44:29 +01:00
parent 2ef2ff997f
commit a94085229d
3 changed files with 4 additions and 5 deletions

View file

@ -2,9 +2,7 @@ package techreborn.blocks;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import com.pahimar.ee3.item.ItemGem;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
@ -17,12 +15,13 @@ import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.common.util.ForgeDirection;
import techreborn.client.TechRebornCreativeTabMisc;
import techreborn.init.ModItems;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import techreborn.init.ModBlocks;
import techreborn.items.ItemDusts;
import techreborn.items.ItemGems;
import techreborn.util.OreDrop;
import techreborn.util.OreDropSet;
public class BlockOre extends Block {

View file

@ -1,4 +1,4 @@
package techreborn.blocks;
package techreborn.util;
import java.util.Random;

View file

@ -1,4 +1,4 @@
package techreborn.blocks;
package techreborn.util;
import java.util.ArrayList;
import java.util.Random;