Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public class GTMTE_SingleTank extends GT_MetaTileEntity_MultiBlockBase {
private final byte fluidSelector = 0;
private MultiFluidHandler mfh;
int CASING_TEXTURE_ID = 176;
private int runningCost = 0;
private boolean doVoidExcess = false;

public GTMTE_SingleTank(int aID, String aNameRegional) {
Expand Down Expand Up @@ -534,7 +533,6 @@ public String[] getInfoData() {
public void saveNBTData(NBTTagCompound nbt) {
nbt = (nbt == null) ? new NBTTagCompound() : nbt;

nbt.setInteger("runningCost", runningCost);
nbt.setBoolean("doVoidExcess", doVoidExcess);

if (mfh != null) {
Expand All @@ -551,7 +549,6 @@ public void saveNBTData(NBTTagCompound nbt) {
public void loadNBTData(NBTTagCompound nbt) {
nbt = (nbt == null) ? new NBTTagCompound() : nbt;

runningCost = nbt.getInteger("runningCost");
doVoidExcess = nbt.getBoolean("doVoidExcess");

mfh = new MultiFluidHandler(MAX_DISTINCT_FLUIDS);
Expand Down