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 BasicSink energy;
|
||||
public Inventory inventory = new Inventory(3, "TileAlloySmelter", 64);
|
||||
|
||||
|
||||
@Override
|
||||
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
|
||||
|
|
|
@ -21,8 +21,11 @@ public class TileQuantumChest extends TileMachineBase implements IInventory,
|
|||
// Slot 0 = Input
|
||||
// Slot 1 = Output
|
||||
// Slot 2 = Fake Item
|
||||
|
||||
int storage = (int) Double.MAX_VALUE;
|
||||
|
||||
public Inventory inventory = new Inventory(3, "TileQuantumChest",
|
||||
Integer.MAX_VALUE);
|
||||
storage);
|
||||
|
||||
public ItemStack storedItem;
|
||||
|
||||
|
|
|
@ -59,6 +59,15 @@ public class TROreGen implements IWorldGenerator {
|
|||
Blocks.end_stone);
|
||||
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
|
||||
public void generate(Random random, int xChunk, int zChunk, World world,
|
||||
|
|
Loading…
Add table
Reference in a new issue