Made it so the book does not give the filling recipe when the Blood Orb recipe is queried.
(cherry picked from commit afa3d1e
)
This commit is contained in:
parent
c46ed3e648
commit
60eba2071d
|
@ -2,6 +2,7 @@
|
||||||
Version 2.1.1-70
|
Version 2.1.1-70
|
||||||
------------------------------------------------------
|
------------------------------------------------------
|
||||||
- Added Fluid routing to the routing nodes - this is done by using the Fluid Filter and placing a fluid container as the filter.
|
- Added Fluid routing to the routing nodes - this is done by using the Fluid Filter and placing a fluid container as the filter.
|
||||||
|
- Made it so the book does not give the filling recipe when the Blood Orb recipe is queried.
|
||||||
|
|
||||||
------------------------------------------------------
|
------------------------------------------------------
|
||||||
Version 2.1.0-69
|
Version 2.1.0-69
|
||||||
|
|
|
@ -33,7 +33,7 @@ public class RecipeHelper
|
||||||
{
|
{
|
||||||
for (AltarRecipeRegistry.AltarRecipe recipe : AltarRecipeRegistry.getRecipes().values())
|
for (AltarRecipeRegistry.AltarRecipe recipe : AltarRecipeRegistry.getRecipes().values())
|
||||||
{
|
{
|
||||||
if (recipe != null)
|
if (recipe != null && !recipe.isFillable())
|
||||||
{
|
{
|
||||||
ItemStack resultStack = recipe.getOutput();
|
ItemStack resultStack = recipe.getOutput();
|
||||||
if (!resultStack.isEmpty())
|
if (!resultStack.isEmpty())
|
||||||
|
|
Loading…
Reference in a new issue