Way being picky.

This commit is contained in:
Fenn 2014-01-17 21:43:13 +00:00
parent e3644f2d2b
commit 7e30b02d69
303 changed files with 622 additions and 311 deletions

View file

@ -25,7 +25,8 @@ import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class TEAltar extends TileEntity implements IInventory, IFluidTank, IFluidHandler {
public class TEAltar extends TileEntity implements IInventory, IFluidTank, IFluidHandler
{
private ItemStack[] inv;
private int resultID;
private int resultDamage;

View file

@ -4,7 +4,8 @@ import WayofTime.alchemicalWizardry.common.PacketHandler;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.packet.Packet;
public class TEConduit extends TEOrientable {
public class TEConduit extends TEOrientable
{
@Override
public void readFromNBT(NBTTagCompound par1NBTTagCompound)
{

View file

@ -9,7 +9,8 @@ import net.minecraft.tileentity.TileEntity;
import net.minecraft.tileentity.TileEntitySkull;
import net.minecraft.world.World;
public class TEHomHeart extends TileEntity {
public class TEHomHeart extends TileEntity
{
public boolean canCastSpell(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
{
return true;

View file

@ -3,7 +3,8 @@ package WayofTime.alchemicalWizardry.common.tileEntity;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minecraft.tileentity.TileEntity;
public class TEHomHeartRenderer extends TileEntitySpecialRenderer {
public class TEHomHeartRenderer extends TileEntitySpecialRenderer
{
@Override
public void renderTileEntityAt(TileEntity tileentity, double d0, double d1, double d2, float f)
{

View file

@ -2,7 +2,8 @@ package WayofTime.alchemicalWizardry.common.tileEntity;
import net.minecraft.tileentity.TileEntity;
public class TEImperfectRitualStone extends TileEntity {
public class TEImperfectRitualStone extends TileEntity
{
public TEImperfectRitualStone()
{
// TODO Auto-generated constructor stub

View file

@ -8,7 +8,8 @@ import net.minecraft.server.MinecraftServer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class TEMasterStone extends TileEntity {
public class TEMasterStone extends TileEntity
{
private int currentRitual;
private boolean isActive;
private String owner;

View file

@ -5,7 +5,8 @@ import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.common.ForgeDirection;
public class TEOrientable extends TileEntity implements IOrientable {
public class TEOrientable extends TileEntity implements IOrientable
{
protected ForgeDirection inputFace;
protected ForgeDirection outputFace;

View file

@ -11,7 +11,8 @@ import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.packet.Packet;
import net.minecraft.tileentity.TileEntity;
public class TEPedestal extends TileEntity implements IInventory {
public class TEPedestal extends TileEntity implements IInventory
{
private ItemStack[] inv;
private int resultID;
private int resultDamage;

View file

@ -21,7 +21,8 @@ import net.minecraftforge.oredict.OreDictionary;
import java.util.ArrayList;
import java.util.List;
public class TEPlinth extends TileEntity implements IInventory {
public class TEPlinth extends TileEntity implements IInventory
{
private ItemStack[] inv;
private boolean isActive;

View file

@ -9,7 +9,8 @@ import net.minecraft.nbt.NBTTagList;
import net.minecraft.network.packet.Packet;
import net.minecraft.tileentity.TileEntity;
public class TESocket extends TileEntity implements IInventory {
public class TESocket extends TileEntity implements IInventory
{
private ItemStack[] inv;
private int resultID;
private int resultDamage;

View file

@ -18,7 +18,8 @@ import net.minecraft.world.World;
import java.util.Iterator;
import java.util.List;
public class TETeleposer extends TileEntity implements IInventory {
public class TETeleposer extends TileEntity implements IInventory
{
private ItemStack[] inv;
private int resultID;
private int resultDamage;

View file

@ -20,7 +20,8 @@ import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
public class TEWritingTable extends TileEntity implements IInventory {
public class TEWritingTable extends TileEntity implements IInventory
{
private ItemStack[] inv;
private int progress;
private int progressNeeded = 100;

View file

@ -7,7 +7,8 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerAltar extends Container {
public class ContainerAltar extends Container
{
protected TEAltar tileEntity;
public ContainerAltar(InventoryPlayer inventoryPlayer, TEAltar te)

View file

@ -7,7 +7,8 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerTeleposer extends Container {
public class ContainerTeleposer extends Container
{
protected TETeleposer tileEntity;
public ContainerTeleposer(InventoryPlayer inventoryPlayer, TETeleposer te)

View file

@ -7,7 +7,8 @@ import net.minecraft.inventory.Container;
import net.minecraft.inventory.Slot;
import net.minecraft.item.ItemStack;
public class ContainerWritingTable extends Container {
public class ContainerWritingTable extends Container
{
protected TEWritingTable tileEntity;
public ContainerWritingTable(InventoryPlayer inventoryPlayer, TEWritingTable te)

View file

@ -9,7 +9,8 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
public class GuiHandler implements IGuiHandler {
public class GuiHandler implements IGuiHandler
{
//returns an instance of the Container you made earlier
@Override
public Object getServerGuiElement(int id, EntityPlayer player, World world, int x, int y, int z)

View file

@ -9,7 +9,8 @@ import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;
import org.lwjgl.opengl.GL11;
public class GuiTeleposer extends GuiContainer {
public class GuiTeleposer extends GuiContainer
{
public GuiTeleposer(InventoryPlayer inventoryPlayer, TETeleposer tileEntity)
{
//the container is instanciated and passed to the superclass for handling

View file

@ -9,7 +9,8 @@ import net.minecraft.util.ResourceLocation;
import net.minecraft.util.StatCollector;
import org.lwjgl.opengl.GL11;
public class GuiWritingTable extends GuiContainer {
public class GuiWritingTable extends GuiContainer
{
public GuiWritingTable(InventoryPlayer inventoryPlayer, TEWritingTable tileEntity)
{
//the container is instanciated and passed to the superclass for handling