Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
converted RockBreakerLoader to java, decided not to do any kotlin cod…
Browse files Browse the repository at this point in the history
…e for now
  • Loading branch information
Trinsdar committed Sep 29, 2024
1 parent d0efb93 commit e9a46a7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package muramasa.gregtech.loader.machines;

import io.github.gregtechintergalactical.gtcore.data.GTCoreItems;
import net.minecraft.world.item.Items;

import static muramasa.gregtech.data.RecipeMaps.ROCK_BREAKER;

public class RockBreakerLoader {
public static void init(){
ROCK_BREAKER.RB().ii(GTCoreItems.SELECTOR_TAG_INGREDIENTS.get(0)).io(Items.COBBLESTONE).add("cobblestone", 16,32);
ROCK_BREAKER.RB().ii(GTCoreItems.SELECTOR_TAG_INGREDIENTS.get(1)).io(Items.STONE).add("stone", 16,32);
}
}

This file was deleted.

0 comments on commit e9a46a7

Please sign in to comment.