mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-08-31 17:47:56 +00:00
@@ -72,10 +72,11 @@ public final class ColourableRecipe extends SpecialCraftingRecipe {
|
||||
}
|
||||
}
|
||||
|
||||
if (colourable.isEmpty()) {
|
||||
return ItemStack.EMPTY;
|
||||
}
|
||||
return ((IColouredItem) colourable.getItem()).withColour(colourable, tracker.getColour());
|
||||
if( colourable.isEmpty() ) return ItemStack.EMPTY;
|
||||
|
||||
ItemStack stack = ((IColouredItem) colourable.getItem()).withColour( colourable, tracker.getColour() );
|
||||
stack.setCount( 1 );
|
||||
return stack;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user