mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-11-03 23:22:59 +00:00 
			
		
		
		
	Use correct render type for turtles
This fixes them not rendering particles when broken. Particle rendering is a little janky right now, as it uses the whole texture - we should probably split up the texture into smaller images. Fixes #315
This commit is contained in:
		@@ -58,7 +58,7 @@ public class BlockTurtle extends BlockComputerBase
 | 
			
		||||
    @Deprecated
 | 
			
		||||
    public EnumBlockRenderType getRenderType( IBlockState state )
 | 
			
		||||
    {
 | 
			
		||||
        return EnumBlockRenderType.INVISIBLE;
 | 
			
		||||
        return EnumBlockRenderType.ENTITYBLOCK_ANIMATED;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user