Skip to content

Commit

Permalink
Fix Ultra High Strength Concrete Floor Receipe (#1134)
Browse files Browse the repository at this point in the history
  • Loading branch information
glowredman authored Jan 3, 2025
1 parent 27328fa commit eb7ca29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class AchievementHandler {

private static final Map<UUID, Integer> LAST_DEATHCOUNT = new HashMap<>();
private static final HashMap<UUID, Float> LAST_DAMAGE = new HashMap<>();
private static final Map<UUID, Float> LAST_DAMAGE = new HashMap<>();

private static StatBase infinityArmorAchievement;
private static StatBase omegaArmorAchievement;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public void loadRecipes() {
.itemInputs(
BlockList.NeutroniumPlatedReinforcedStone.getIS(),
WerkstoffLoader.HDCS.get(OrePrefixes.plate, 8))
.itemOutputs(new ItemStack(IGItems.DysonSwarmItems, 1, 9))
.itemOutputs(getIGItem("dysonswarmparts", 1, 9))
.fluidInputs(FluidRegistry.getFluidStack("molten.adamantium alloy", 144)).duration(25 * SECONDS)
.eut(TierEU.RECIPE_LuV).addTo(assemblerRecipes);
GTValues.RA.stdBuilder()
Expand Down

0 comments on commit eb7ca29

Please sign in to comment.