-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35a6e2c
commit a09141a
Showing
3 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# custom crafting fabric | ||
custom crafting fabric is a mod for crafting recipes without craft tweaker | ||
|
||
to build the mod you need java 17 jdk installed | ||
|
||
# building | ||
|
||
to build run `gradlew runclient` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/main/java/com/tinteeam/custom_crafting/blank_diamond.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.tinteeam.custom_crafting; | ||
|
||
import net.fabricmc.fabric.api.item.v1.FabricItemSettings; | ||
import net.minecraft.item.Item; | ||
import net.minecraft.util.Identifier; | ||
import net.minecraft.util.registry.Registry; | ||
|
||
public class blank_diamond { | ||
public static final Item BLANK_DIAMOND = register(new Item(new FabricItemSettings()), "blank_diamond"); | ||
|
||
public static Item register(Item instance, String path) { | ||
return Registry.register(Registry.ITEM, new Identifier("custom_crafting", "blank_diamond"), instance); | ||
} | ||
|
||
|
||
public static void initialize() { | ||
} | ||
|
||
|
||
|
||
} |