mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Fixed Bug with the booklet crashing if a crafting recipe is turned off in the config
This commit is contained in:
parent
97c948828a
commit
a7fe955e6f
1 changed files with 11 additions and 9 deletions
|
@ -49,6 +49,7 @@ public class PageCrafting extends BookletPage{
|
||||||
if(this.recipes != null){
|
if(this.recipes != null){
|
||||||
ItemStack[] stacks = new ItemStack[this.recipes.length];
|
ItemStack[] stacks = new ItemStack[this.recipes.length];
|
||||||
for(int i = 0; i < this.recipes.length; i++){
|
for(int i = 0; i < this.recipes.length; i++){
|
||||||
|
if(this.recipes[i] != null){
|
||||||
ItemStack output = this.recipes[i].getRecipeOutput();
|
ItemStack output = this.recipes[i].getRecipeOutput();
|
||||||
if(output != null){
|
if(output != null){
|
||||||
if(!this.arePageStacksWildcard){
|
if(!this.arePageStacksWildcard){
|
||||||
|
@ -61,6 +62,7 @@ public class PageCrafting extends BookletPage{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return stacks;
|
return stacks;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue