remove unused shadow method

This commit is contained in:
dfsek 2022-01-07 10:01:52 -07:00
parent 5e77878427
commit f0a71b3ad0

View File

@ -41,9 +41,6 @@ public abstract class BlockStateMixin extends State<Block, net.minecraft.block.B
@Shadow @Shadow
public abstract boolean isAir(); public abstract boolean isAir();
@Shadow
public abstract void randomTick(ServerWorld world, BlockPos pos, Random random);
public boolean terra$matches(BlockState other) { public boolean terra$matches(BlockState other) {
return getBlock() == ((net.minecraft.block.BlockState) other).getBlock(); return getBlock() == ((net.minecraft.block.BlockState) other).getBlock();
} }