Skip to content

Commit

Permalink
requested changes 2
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Nov 20, 2021
1 parent 678729d commit 6e34fcb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ public static void register() {
GreenSapphireSlurry = new Material.Builder(1622, "green_sapphire_slurry")
.fluid().color(0x64c882).build();

// These colors are much nicer looking than those in MC's EnumDyeColor
DyeBlack = new Material.Builder(1623, "dye_black")
.fluid().color(0x202020).build();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/gregtech/api/util/GTUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class GTUtility {

private static final XSTR random = new XSTR();

private static final TreeMap<Integer, String> romanNumeralConversions = new TreeMap<>();
private static TreeMap<Integer, String> romanNumeralConversions = new TreeMap<>();

public static Runnable combine(Runnable... runnables) {
return () -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ private static void registerAlloyRecipes() {
}

private static void registerAssemblerRecipes() {
for (int i = 0; i < 16; i++) {
for (int i = 0; i < Materials.CHEMICAL_DYES.length; i++) {
CANNER_RECIPES.recipeBuilder()
.inputs(MetaItems.SPRAY_EMPTY.getStackForm())
.fluidInputs(Materials.CHEMICAL_DYES[i].getFluid(GTValues.L * 4))
Expand Down Expand Up @@ -866,7 +866,7 @@ private static void registerFluidRecipes() {
.output(GELLED_TOLUENE)
.duration(100).EUt(16).buildAndRegister();

for (int i = 0; i < 16; i++) {
for (int i = 0; i < Materials.CHEMICAL_DYES.length; i++) {
FLUID_SOLIDFICATION_RECIPES.recipeBuilder()
.fluidInputs(Materials.CHEMICAL_DYES[i].getFluid(GTValues.L / 2))
.notConsumable(MetaItems.SHAPE_MOLD_BALL.getStackForm())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ public static void init() {
.duration(200).EUt(480).buildAndRegister();

// Dyes
for (int i = 0; i < 16; i++) {
for (int i = 0; i < Materials.CHEMICAL_DYES.length; i++) {
CHEMICAL_RECIPES.recipeBuilder()
.input(dye, MarkerMaterials.Color.VALUES[i])
.input(dust, Salt, 2)
Expand Down

0 comments on commit 6e34fcb

Please sign in to comment.