Skip to content

Commit

Permalink
Allow revolver pieces to be recycled in the arc furnace, closes BluSu…
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSunrize committed Jul 20, 2024
1 parent f747d08 commit c785b3f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Add recipe for crushing slag bricks into slag gravel (BluSunrize)
- Add recipes for wetting vanilla concrete powder in the bottling machine (BluSunrize)
- Add progress tooltip to items in the arc furnace (BluSunrize)
- Allow revolver pieces to be recycled in the arc furnace (BluSunrize)
- Change recipe for catwalk stairs to be cheaper (BluSunrize)
- Change luck attribute on revolvers to apply always, instead of just when held (BluSunrize)
- Fix waterlogged posts not dropping items (BluSunrize)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@
import blusunrize.immersiveengineering.common.register.IEBlocks.MetalDecoration;
import blusunrize.immersiveengineering.common.register.IEBlocks.MetalDevices;
import blusunrize.immersiveengineering.common.register.IEItems;
import blusunrize.immersiveengineering.common.register.IEItems.Ingredients;
import blusunrize.immersiveengineering.common.register.IEItems.Misc;
import blusunrize.immersiveengineering.common.register.IEItems.Molds;
import blusunrize.immersiveengineering.common.register.IEItems.Weapons;
import blusunrize.immersiveengineering.common.util.IEIMCHandler;
import blusunrize.immersiveengineering.common.util.IELogger;
import blusunrize.immersiveengineering.common.util.RecipeSerializers;
Expand Down Expand Up @@ -137,6 +139,10 @@ public void setup(FMLCommonSetupEvent event)
ArcRecyclingChecker.allowSimpleItemForRecycling(stack -> stack instanceof HammerItem
||stack instanceof WirecutterItem||stack instanceof ScrewdriverItem
||stack instanceof DrillheadItem||stack instanceof JerrycanItem);
// Revolver parts
ArcRecyclingChecker.allowEnumeratedItemsForRecycling(() -> Stream.of(
Ingredients.GUNPART_BARREL, Ingredients.GUNPART_DRUM, Ingredients.GUNPART_HAMMER
));
// Blocks, Plates, Rods, Wires, Gears, Scaffoldings, Fences
ArcRecyclingChecker.allowItemTagForRecycling(IETags.plates);
ArcRecyclingChecker.allowPrefixedTagForRecycling("rods/");
Expand Down

0 comments on commit c785b3f

Please sign in to comment.