1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-12 11:10:29 +00:00

Fixed Speaker being recognized as Disk Drive. Massive thanks to @SquidDev

This commit is contained in:
Restioson 2017-05-07 17:48:06 +02:00
parent 6cf1801f7e
commit a748d0167b

View File

@ -502,6 +502,10 @@ public class BlockPeripheral extends BlockPeripheralBase
{
return getDefaultState().withProperty( Properties.VARIANT, BlockPeripheralVariant.AdvancedMonitor );
}
case Speaker:
{
return getDefaultState().withProperty( Properties.VARIANT, BlockPeripheralVariant.Speaker );
}
}
}