diff options
author | Jason Mitchell <mitchej@gmail.com> | 2023-01-28 19:32:44 -0800 |
---|---|---|
committer | Jason Mitchell <mitchej@gmail.com> | 2023-01-28 19:32:44 -0800 |
commit | 55f64675b42ac8d3c557cc850f78664bee006f6f (patch) | |
tree | 2afd26dd3d5e6f763119bc192b57c66a1a075922 /src/main/java/Ic2ExpReactorPlanner/components/Plating.java | |
parent | 0f5dfd01b877b6a1019e0671b88d07974aae68c0 (diff) | |
download | GT5-Unofficial-55f64675b42ac8d3c557cc850f78664bee006f6f.tar.gz GT5-Unofficial-55f64675b42ac8d3c557cc850f78664bee006f6f.tar.bz2 GT5-Unofficial-55f64675b42ac8d3c557cc850f78664bee006f6f.zip |
[ci skip] spotlessApply with the new settings
Diffstat (limited to 'src/main/java/Ic2ExpReactorPlanner/components/Plating.java')
-rw-r--r-- | src/main/java/Ic2ExpReactorPlanner/components/Plating.java | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/src/main/java/Ic2ExpReactorPlanner/components/Plating.java b/src/main/java/Ic2ExpReactorPlanner/components/Plating.java index de49dfa13c..8a1edf8d8f 100644 --- a/src/main/java/Ic2ExpReactorPlanner/components/Plating.java +++ b/src/main/java/Ic2ExpReactorPlanner/components/Plating.java @@ -1,7 +1,6 @@ /* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. + * To change this license header, choose License Headers in Project Properties. To change this template file, choose + * Tools | Templates and open the template in the editor. */ package Ic2ExpReactorPlanner.components; @@ -9,23 +8,17 @@ import Ic2ExpReactorPlanner.Reactor; import gregtech.api.objects.GT_ItemStack; /** - * Represents some form of plating, which changes how much heat the reactor can - * hold before causing external effects (up to and including explosion), as well - * as somewhat reducing explosion power. + * Represents some form of plating, which changes how much heat the reactor can hold before causing external effects (up + * to and including explosion), as well as somewhat reducing explosion power. + * * @author Brian McCloud */ public class Plating extends ReactorItem { private final int heatAdjustment; - public Plating( - final int id, - final String baseName, - GT_ItemStack aItem, - final double maxDamage, - final double maxHeat, - final String sourceMod, - final int heatAdjustment, + public Plating(final int id, final String baseName, GT_ItemStack aItem, final double maxDamage, + final double maxHeat, final String sourceMod, final int heatAdjustment, final double explosionPowerMultiplier) { super(id, baseName, aItem, maxDamage, maxHeat, sourceMod); this.heatAdjustment = heatAdjustment; |