Skip to content

Commit

Permalink
Merge branch 'master' into migrate-casing
Browse files Browse the repository at this point in the history
  • Loading branch information
serenibyss authored Jan 3, 2025
2 parents 432452d + eb7ca29 commit e904c25
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 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 @@ -781,14 +781,6 @@ public void run() {
.getToolWithStats(170, 1, Materials.WroughtIron, Materials.Steel, null))
.duration(16 * SECONDS).eut(TierEU.RECIPE_LV).addTo(assemblerRecipes);

GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.turbineBlade, Materials.Bronze, 4L),
GTOreDictUnificator.get(OrePrefixes.stickLong, Materials.Steel, 1L))
.itemOutputs(
MetaGeneratedTool01.INSTANCE.getToolWithStats(170, 1, Materials.Bronze, Materials.Steel, null))
.duration(16 * SECONDS).eut(TierEU.RECIPE_LV).addTo(assemblerRecipes);

GTValues.RA.stdBuilder()
.itemInputs(
GTOreDictUnificator.get(OrePrefixes.turbineBlade, Materials.Steel, 4L),
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 e904c25

Please sign in to comment.