Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
fixed recipes for creating dye
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 3, 2024
1 parent a76094e commit db15114
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ protected void processTags(String domain) {
this.tag(GregTechTags.DUST_SIO).addTag(DUST.getMaterialTag(CertusQuartz));
}
this.tag(ForgeCTags.DYES_BLACK).add(Items.INK_SAC);
this.tag(ForgeCTags.DYES_BLUE).addTag(GEM.getMaterialTag(Lapis)).addTag(GEM.getMaterialTag(Sodalite)).addTag(DUST.getMaterialTag(Sodalite));
this.tag(ForgeCTags.DYES_CYAN).addTag(GEM.getMaterialTag(Lazurite)).addTag(DUST.getMaterialTag(Lazurite));
this.tag(ForgeCTags.DYES_BLUE).addTag(GEM.getMaterialTag(Lapis)).addTag(GEM.getMaterialTag(Sodalite));
this.tag(ForgeCTags.DYES_CYAN).addTag(GEM.getMaterialTag(Lazurite));
this.tag(ForgeCTags.DYES_GREEN).addTag(DUST.getMaterialTag(Malachite));
this.tag(ForgeCTags.DYES_WHITE).add(Items.BONE_MEAL);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ public static void init() {
for (DyeColor dye : DyeColor.values()) {
String dyeName = dye.getName() + "_dye";
Material dyeMaterial = Material.get("water_mixed_" + dyeName);
MIXER.RB().ii(of(dye.getTag())).fi(Water.getLiquid(L + (L / 2))).fo(dyeMaterial.getLiquid(L + (L9 * 3))).add("water_mixed_" + dyeName, 16, 4);
MIXER.RB().ii(of(dye.getTag())).fi(Water.getLiquid(L * 2)).fo(dyeMaterial.getLiquid(L + (L / 2))).add("water_mixed_" + dyeName + "_distilled_water", 16, 4);
MIXER.RB().ii(of(dye.getTag())).fi(Water.getLiquid(L)).fo(dyeMaterial.getLiquid(L + (L / 2))).add("water_mixed_" + dyeName, 16, 4);
MIXER.RB().ii(of(dye.getTag())).fi(DistilledWater.getLiquid(L)).fo(dyeMaterial.getLiquid(L + (L / 2))).add("water_mixed_" + dyeName + "_distilled_water", 16, 4);
}
}

Expand Down

0 comments on commit db15114

Please sign in to comment.