this doesn't compile yet, but have something to peek at

This commit is contained in:
Nicholas Ignoffo 2017-08-14 20:53:42 -07:00
parent 973f1019a5
commit 5fcdd978d7
329 changed files with 3247 additions and 2953 deletions

View file

@ -1,12 +1,8 @@
package WayofTime.bloodmagic.tile;
import lombok.Getter;
import lombok.Setter;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.Entity;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.NetworkManager;
import net.minecraft.network.play.server.SPacketUpdateTileEntity;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.ITickable;
import WayofTime.bloodmagic.api.Constants;
@ -18,9 +14,6 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche
{
public boolean isActive = false;
public int activeCounter = 0;
@Getter
@Setter
public EnumFacing rotation = EnumFacing.HORIZONTALS[0];;
private String key = "empty";
@ -153,4 +146,13 @@ public class TileAlchemyArray extends TileInventory implements ITickable, IAlche
return false;
}
@Override
public EnumFacing getRotation() {
return rotation;
}
public void setRotation(EnumFacing rotation) {
this.rotation = rotation;
}
}