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