mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-08-30 09:07: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++ )
|
||||
{
|
||||
ItemStack stack = inv.getItem( i );
|
||||
if( stack.isEmpty() ) continue;
|
||||
|
||||
if( stack.isEmpty() )
|
||||
if( stack.getItem() instanceof IColouredItem )
|
||||
{
|
||||
continue;
|
||||
colourable = stack;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user