1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-25 22:53:22 +00:00

Fix cables not rendering the breaking steps

The fact that it's taken this long for anyone to notice this didn't work
is rather embarassing.
This commit is contained in:
SquidDev 2019-01-12 18:33:59 +00:00
parent 1c648850ab
commit 227d5e9e69
2 changed files with 7 additions and 2 deletions

View File

@ -23,7 +23,6 @@
import net.minecraft.item.ItemStack;
import net.minecraft.util.SoundEvent;
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.client.ClientCommandHandler;
import net.minecraftforge.event.world.WorldEvent;
import net.minecraftforge.fml.client.registry.ClientRegistry;
@ -33,7 +32,6 @@
import net.minecraftforge.fml.relauncher.SideOnly;
import javax.annotation.Nonnull;
import java.io.File;
public class ComputerCraftProxyClient extends ComputerCraftProxyCommon
{

View File

@ -381,4 +381,11 @@ public BlockFaceShape getBlockFaceShape( IBlockAccess world, IBlockState state,
{
return BlockFaceShape.UNDEFINED;
}
@Override
@Deprecated
public boolean hasCustomBreakingProgress( IBlockState state )
{
return true;
}
}