aboutsummaryrefslogtreecommitdiff
path: root/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java
diff options
context:
space:
mode:
authorBlood-Asp <Blood@Asp>2015-05-25 23:04:14 +0200
committerBlood-Asp <Blood@Asp>2015-05-25 23:04:14 +0200
commitadb4a5eef6c1abf5f2ce68d133d7f54c16939442 (patch)
treea9304e34720072cbcf3a59764599f85d50ce6712 /main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java
parenta102e63891d2af3452dc9b25d9fd97bc266582b7 (diff)
downloadGT5-Unofficial-adb4a5eef6c1abf5f2ce68d133d7f54c16939442.tar.gz
GT5-Unofficial-adb4a5eef6c1abf5f2ce68d133d7f54c16939442.tar.bz2
GT5-Unofficial-adb4a5eef6c1abf5f2ce68d133d7f54c16939442.zip
Update 5.08.17
Large Turbines, Heat exchanger, player detector
Diffstat (limited to 'main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java')
-rw-r--r--main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java b/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java
index 48232b88f0..cee5bb5689 100644
--- a/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java
+++ b/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java
@@ -78,6 +78,7 @@ import net.minecraft.world.World;
checkHeatAcceptor(reactor, x, y + 1, heatAcceptors);
while ((heatAcceptors.size() > 0) && (heat > 0))
{
+ heat *=sEnergy;
int dheat = heat / heatAcceptors.size();
heat -= dheat;
dheat = ((IReactorComponent)((ItemStackCoord)heatAcceptors.get(0)).stack.getItem()).alterHeat(reactor, ((ItemStackCoord)heatAcceptors.get(0)).stack, ((ItemStackCoord)heatAcceptors.get(0)).x, ((ItemStackCoord)heatAcceptors.get(0)).y, dheat);