summaryrefslogtreecommitdiff
path: root/ihl/processing/chemistry/ElectrolysisBathContainer.java
diff options
context:
space:
mode:
authorFoghrye4 <foghrye4@gmail.com>2017-06-13 20:58:18 +0300
committerFoghrye4 <foghrye4@gmail.com>2017-06-13 20:58:18 +0300
commit1da8dcd58647e34c9af94ceeecaeaf3b0d08c48c (patch)
treef9de575627405d0c407b2afb442ab18a6fbea01f /ihl/processing/chemistry/ElectrolysisBathContainer.java
parent50d62a1298f05d6d440a5bc261a0fdf9ffece893 (diff)
enet update
Diffstat (limited to 'ihl/processing/chemistry/ElectrolysisBathContainer.java')
-rw-r--r--ihl/processing/chemistry/ElectrolysisBathContainer.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/ihl/processing/chemistry/ElectrolysisBathContainer.java b/ihl/processing/chemistry/ElectrolysisBathContainer.java
index 9797755..54bb9c7 100644
--- a/ihl/processing/chemistry/ElectrolysisBathContainer.java
+++ b/ihl/processing/chemistry/ElectrolysisBathContainer.java
@@ -60,16 +60,11 @@ public class ElectrolysisBathContainer extends ContainerBase<ElectrolysisBathTil
icrafting.sendProgressBarUpdate(this, 0, this.tileEntity.progress);
}
- if (this.tileEntity.temperature != this.lastTemperature)
- {
- icrafting.sendProgressBarUpdate(this, 1, this.tileEntity.temperature);
- }
}
this.lastNumberOfFluids = this.tileEntity.getNumberOfFluidsInTank();
this.lastFluidAmount = this.tileEntity.getTankAmount();
this.lastProgress = this.tileEntity.progress;
- this.lastTemperature = this.tileEntity.temperature;
}
@Override
@@ -81,9 +76,6 @@ public class ElectrolysisBathContainer extends ContainerBase<ElectrolysisBathTil
case 0:
this.tileEntity.progress=(short) value;
break;
- case 1:
- this.tileEntity.temperature=(short) value;
- break;
}
}