- Added Crushed Lithium Smelting.
This commit is contained in:
PouffyDev
2025-07-09 17:18:01 +01:00
parent d5d66c900d
commit 8570c35a48
7 changed files with 100 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ public class IndustrialMixerBlock extends KineticBlock implements IBE<Industrial
public InteractionResult use(BlockState state, Level level, BlockPos pos, Player player, InteractionHand hand, BlockHitResult result) {
if(hand == InteractionHand.OFF_HAND)
return InteractionResult.PASS;
if(level.getBlockEntity(pos) instanceof IndustrialMixerBlockEntity be){
if(level.getBlockEntity(pos) instanceof IndustrialMixerBlockEntity be) {
ItemStack stack = player.getItemInHand(hand);
MixerMode mixerMode = be.mixerMode;
ItemStack stackInside = mixerMode.item;

View File

@@ -1369,6 +1369,10 @@ public class TFMGStandardRecipeGen extends TFMGRecipeProvider {
NICKEL_FROM_CRUSHED_BLASTING = create(TFMGItems.NICKEL_INGOT::get).withSuffix("_from_crushed_blasting")
.viaCooking(() -> AllItems.CRUSHED_NICKEL)
.inBlastFurnace(),
LITHIUM_FROM_CRUSHED_BLASTING = create(TFMGItems.LITHIUM_INGOT::get).withSuffix("_from_crushed_blasting")
.viaCooking(() -> TFMGItems.CRUSHED_LITHIUM)
.inBlastFurnace(),
//
THERMITE_GRENADE = create(TFMGItems.THERMITE_GRENADE)