From 1e1370939965906099ec526738868567ffb6e5b6 Mon Sep 17 00:00:00 2001 From: Blood-Asp Date: Fri, 25 Dec 2015 15:09:22 +0100 Subject: fuel rod override v2 --- src/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/gregtech/api/items') diff --git a/src/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java b/src/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java index 2faf2d2456..e9e9ce517b 100644 --- a/src/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java +++ b/src/main/java/gregtech/api/items/GT_RadioactiveCellIC_Item.java @@ -125,7 +125,7 @@ public class GT_RadioactiveCellIC_Item extends GT_RadioactiveCell_Item implement if(sMox){ float breedereffectiveness = reactor.getHeat() / reactor.getMaxHeat(); float ReaktorOutput = 1.5F * breedereffectiveness + 1.0F; - reactor.addOutput(ReaktorOutput); + reactor.addOutput(ReaktorOutput * this.sEnergy); }else{ reactor.addOutput((float) (1.0F * this.sEnergy));} } -- cgit