Nothing to see here

This commit is contained in:
Gig 2015-04-25 22:16:23 +01:00
parent bc2bf26fc0
commit ea99f354ad
3 changed files with 14 additions and 1 deletions

View file

@ -13,6 +13,7 @@ public class TileAlloySmelter extends TileMachineBase implements IWrenchable {
public BasicSink energy; public BasicSink energy;
public Inventory inventory = new Inventory(3, "TileAlloySmelter", 64); public Inventory inventory = new Inventory(3, "TileAlloySmelter", 64);
@Override @Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side) public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
{ {

View file

@ -21,8 +21,11 @@ public class TileQuantumChest extends TileMachineBase implements IInventory,
// Slot 0 = Input // Slot 0 = Input
// Slot 1 = Output // Slot 1 = Output
// Slot 2 = Fake Item // Slot 2 = Fake Item
int storage = (int) Double.MAX_VALUE;
public Inventory inventory = new Inventory(3, "TileQuantumChest", public Inventory inventory = new Inventory(3, "TileQuantumChest",
Integer.MAX_VALUE); storage);
public ItemStack storedItem; public ItemStack storedItem;

View file

@ -60,6 +60,15 @@ public class TROreGen implements IWorldGenerator {
LogHelper.info("WorldGen Loaded"); LogHelper.info("WorldGen Loaded");
} }
public void retroGen(Random random, int chunkX, int chunkZ, World world)
{
//TODO
generateUndergroundOres(random, chunkX, chunkZ, world);
generateHellOres(random, chunkX, chunkZ, world);
generateEndOres(random, chunkX, chunkZ, world);
world.getChunkFromChunkCoords(chunkX, chunkZ).setChunkModified();
}
@Override @Override
public void generate(Random random, int xChunk, int zChunk, World world, public void generate(Random random, int xChunk, int zChunk, World world,
IChunkProvider chunkGenerator, IChunkProvider chunkProvider) IChunkProvider chunkGenerator, IChunkProvider chunkProvider)