-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporarily disable FlagIngredient + misc. cleanup
- Loading branch information
1 parent
92c67f2
commit 5f1da59
Showing
21 changed files
with
130 additions
and
344 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
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
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
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
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
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
15 changes: 8 additions & 7 deletions
15
src/main/java/org/violetmoon/zeta/recipe/IZetaCondition.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
22 changes: 0 additions & 22 deletions
22
src/main/java/org/violetmoon/zeta/recipe/IZetaConditionSerializer.java
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
src/main/java/org/violetmoon/zeta/recipe/IZetaCustomIngredient.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 org.violetmoon.zeta.recipe; | ||
|
||
import net.minecraft.world.item.ItemStack; | ||
import net.neoforged.neoforge.common.crafting.ICustomIngredient; | ||
import net.neoforged.neoforge.common.crafting.IngredientType; | ||
import org.violetmoon.zeta.Zeta; | ||
|
||
import java.util.stream.Stream; | ||
|
||
// Copy of Neoforge ICustomIngredient | ||
public interface IZetaCustomIngredient extends ICustomIngredient { // TODO: Abstract later, use NF-provided CustomIngredient for now | ||
boolean test(ItemStack var1); | ||
|
||
Stream<ItemStack> getItems(); | ||
|
||
boolean isSimple(); | ||
|
||
IngredientType<?> getType(); | ||
|
||
Zeta getZeta(); | ||
} |
Oops, something went wrong.