Skip to content

Commit

Permalink
Fix Wrong Nether/Fluix Quartz Seed Amount in Autoclave (GTNewHorizons…
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruling-0 authored Dec 11, 2024
1 parent 691cba8 commit 9ca77b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ public void run() {
certusQuartzTag.setInteger("progress", 0);
certusQuartzSeed.setTagCompound(certusQuartzTag);

final ItemStack netherQuartzSeed = getModItem(AppliedEnergistics2.ID, "item.ItemCrystalSeed", 2L, 600);
final ItemStack netherQuartzSeed = getModItem(AppliedEnergistics2.ID, "item.ItemCrystalSeed", 1L, 600);
NBTTagCompound netherQuartzTag = new NBTTagCompound();
netherQuartzTag.setInteger("progress", 600);
netherQuartzSeed.setTagCompound(netherQuartzTag);

final ItemStack fluixSeed = getModItem(AppliedEnergistics2.ID, "item.ItemCrystalSeed", 2L, 1200);
final ItemStack fluixSeed = getModItem(AppliedEnergistics2.ID, "item.ItemCrystalSeed", 1L, 1200);
NBTTagCompound fluixTag = new NBTTagCompound();
fluixTag.setInteger("progress", 1200);
fluixSeed.setTagCompound(fluixTag);
Expand Down

0 comments on commit 9ca77b4

Please sign in to comment.