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

Commit

Permalink
fixed carpet recipes in assembler
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 3, 2024
1 parent a30f03e commit a76094e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private static void carpet(){
for (DyeColor dye : DyeColor.values()){
String dyeName = dye.getName() + "_dye";
TagKey<Fluid> dyeLiquid = TagUtils.getFluidTag(new ResourceLocation(GTIRef.ID, dyeName));
ASSEMBLER.RB().ii(of(Items.STRING), SELECTOR_TAG_INGREDIENTS.get(3)).fi(FluidIngredient.of(dyeLiquid, L9 + (L9 / 2))).io(new ItemStack(AntimatterPlatformUtils.getItemFromID(new ResourceLocation(dye.getName() + "_carpet")), 2)).add(dye.getName() + "_carpet", 128, 5);
ASSEMBLER.RB().ii(of(Items.STRING, 2), SELECTOR_TAG_INGREDIENTS.get(2)).fi(FluidIngredient.of(dyeLiquid, L9 + (L9 / 2))).io(new ItemStack(AntimatterPlatformUtils.getItemFromID(new ResourceLocation(dye.getName() + "_carpet")), 1)).add(dye.getName() + "_carpet", 128, 5);
}
}

Expand Down

0 comments on commit a76094e

Please sign in to comment.