mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-09-01 18:17:55 +00:00
Fix some items not being dyable
This commit is contained in:
@@ -73,10 +73,11 @@ public final class ColourableRecipe extends CustomRecipe
|
|||||||
for( int i = 0; i < inv.getContainerSize(); i++ )
|
for( int i = 0; i < inv.getContainerSize(); i++ )
|
||||||
{
|
{
|
||||||
ItemStack stack = inv.getItem( i );
|
ItemStack stack = inv.getItem( i );
|
||||||
|
if( stack.isEmpty() ) continue;
|
||||||
|
|
||||||
if( stack.isEmpty() )
|
if( stack.getItem() instanceof IColouredItem )
|
||||||
{
|
{
|
||||||
continue;
|
colourable = stack;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user