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

Commit

Permalink
fix plasmids (#362)
Browse files Browse the repository at this point in the history
Former-commit-id: 66f899b5ac2d1828b7b9cacb493594eebcaa2e1b
  • Loading branch information
chochem authored Sep 23, 2023
1 parent c47ded4 commit f73dd0e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;

import com.github.bartimaeusnek.bartworks.common.loaders.BioItemList;

import gregtech.api.enums.GT_Values;
import gregtech.api.enums.TierEU;
import gregtech.api.util.GT_Utility;
Expand All @@ -16,7 +18,8 @@ public class LaserEngraver implements Runnable {
public void run() {

GT_Values.RA.stdBuilder().itemInputs(new ItemStack(Items.emerald), GT_Utility.getIntegratedCircuit(17))
.duration(5 * SECONDS).eut(TierEU.RECIPE_LV).addTo(sLaserEngraverRecipes);
.itemOutputs(BioItemList.getPlasmidCell(null)).duration(5 * SECONDS).eut(TierEU.RECIPE_LV)
.addTo(sLaserEngraverRecipes);

}
}

0 comments on commit f73dd0e

Please sign in to comment.