Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
UselessBullets committed Jul 12, 2024
1 parent ad1527e commit 8fadabe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ dependencies {
// If you do not need Halplibe you can comment this line out or delete this line
modImplementation "com.github.Turnip-Labs:bta-halplibe:${project.halplibe_version}"

modImplementation "ModMenu:ModMenu:2.0.6"
modCompileOnly "ModMenu:ModMenu:2.0.6"

implementation "org.slf4j:slf4j-api:1.8.0-beta4"
implementation "org.apache.logging.log4j:log4j-slf4j18-impl:2.16.0"
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/useless/polymorph/PolyMorph.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ public static void setRecipeOffset(EntityPlayer player, int recipeOffset){
@Override
public void onRecipesReady() {
// Recipes for Testing
List<RecipeSymbol> symbols = new ArrayList<>();
symbols.add(new RecipeSymbol(Block.dirt.getDefaultStack()));
Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.diamond.getDefaultStack()));
Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotSteel.getDefaultStack()));
Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotIron.getDefaultStack()));
Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotGold.getDefaultStack()));
// List<RecipeSymbol> symbols = new ArrayList<>();
// symbols.add(new RecipeSymbol(Block.dirt.getDefaultStack()));
// Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.diamond.getDefaultStack()));
// Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotSteel.getDefaultStack()));
// Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotIron.getDefaultStack()));
// Registries.RECIPES.WORKBENCH.register("test1", new RecipeEntryCraftingShapeless(symbols, Item.ingotGold.getDefaultStack()));
}
@Override
public void onInitialize() {
Expand Down
3 changes: 0 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
"main": [
"useless.polymorph.PolyMorph"
],
"recipesReady" : [
"useless.polymorph.PolyMorph"
],
"afterClientStart": [
"useless.polymorph.PolyMorphClient"
],
Expand Down

0 comments on commit 8fadabe

Please sign in to comment.