Skip to content

Commit

Permalink
Corrected material counts for components that use iron bars in their …
Browse files Browse the repository at this point in the history
…recipes.
  • Loading branch information
MauveCloud committed Sep 25, 2018
1 parent 2d7474e commit 8fcb683
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Ic2ExpReactorPlanner/AdvancedHeatVent.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class AdvancedHeatVent extends ReactorComponent {
*/
private static final String imageFilename = "reactorVentDiamond.png"; //NOI18N

public static final MaterialsList MATERIALS = new MaterialsList(2, HeatVent.MATERIALS, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("DIAMOND"), 4.5, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"));
public static final MaterialsList MATERIALS = new MaterialsList(2, HeatVent.MATERIALS, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("DIAMOND"), 2.25, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"));

/**
* Creates a new instance.
Expand Down
2 changes: 1 addition & 1 deletion src/Ic2ExpReactorPlanner/ComponentHeatVent.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class ComponentHeatVent extends ReactorComponent {
*/
private static final String imageFilename = "reactorVentSpread.png"; //NOI18N

public static final MaterialsList MATERIALS = new MaterialsList(HeatVent.MATERIALS, 4, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("TIN"), 3, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"));
public static final MaterialsList MATERIALS = new MaterialsList(HeatVent.MATERIALS, 4, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("TIN"), 1.5, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"));

/**
* Creates a new instance.
Expand Down
2 changes: 1 addition & 1 deletion src/Ic2ExpReactorPlanner/HeatVent.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class HeatVent extends ReactorComponent {
*/
private static final String imageFilename = "reactorVent.png"; //NOI18N

public static final MaterialsList MATERIALS = new MaterialsList(10, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"), 1, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("TIN"), 16.0 / 3, "Copper");
public static final MaterialsList MATERIALS = new MaterialsList(8.5, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("IRON"), 1, java.util.ResourceBundle.getBundle("Ic2ExpReactorPlanner/Bundle").getString("TIN"), 16.0 / 3, "Copper");

/**
* Creates a new instance.
Expand Down

0 comments on commit 8fcb683

Please sign in to comment.