Nothing to see here
This commit is contained in:
parent
bc2bf26fc0
commit
ea99f354ad
3 changed files with 14 additions and 1 deletions
|
@ -12,6 +12,7 @@ public class TileAlloySmelter extends TileMachineBase implements IWrenchable {
|
||||||
public int tickTime;
|
public int tickTime;
|
||||||
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)
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
@ -59,6 +59,15 @@ public class TROreGen implements IWorldGenerator {
|
||||||
Blocks.end_stone);
|
Blocks.end_stone);
|
||||||
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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue