52 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package net.minecraft.world.level.block;
 | |
| 
 | |
| import com.mojang.serialization.MapCodec;
 | |
| import net.minecraft.core.BlockPos;
 | |
| import net.minecraft.core.Direction;
 | |
| import net.minecraft.tags.BlockTags;
 | |
| import net.minecraft.util.RandomSource;
 | |
| import net.minecraft.world.level.LevelReader;
 | |
| import net.minecraft.world.level.ScheduledTickAccess;
 | |
| import net.minecraft.world.level.block.state.BlockBehaviour;
 | |
| import net.minecraft.world.level.block.state.BlockState;
 | |
| 
 | |
| public class SoulFireBlock extends BaseFireBlock {
 | |
| 	public static final MapCodec<SoulFireBlock> CODEC = simpleCodec(SoulFireBlock::new);
 | |
| 
 | |
| 	@Override
 | |
| 	public MapCodec<SoulFireBlock> codec() {
 | |
| 		return CODEC;
 | |
| 	}
 | |
| 
 | |
| 	public SoulFireBlock(BlockBehaviour.Properties properties) {
 | |
| 		super(properties, 2.0F);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	protected BlockState updateShape(
 | |
| 		BlockState state,
 | |
| 		LevelReader level,
 | |
| 		ScheduledTickAccess scheduledTickAccess,
 | |
| 		BlockPos pos,
 | |
| 		Direction direction,
 | |
| 		BlockPos neighborPos,
 | |
| 		BlockState neighborState,
 | |
| 		RandomSource random
 | |
| 	) {
 | |
| 		return this.canSurvive(state, level, pos) ? this.defaultBlockState() : Blocks.AIR.defaultBlockState();
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	protected boolean canSurvive(BlockState state, LevelReader level, BlockPos pos) {
 | |
| 		return canSurviveOnBlock(level.getBlockState(pos.below()));
 | |
| 	}
 | |
| 
 | |
| 	public static boolean canSurviveOnBlock(BlockState state) {
 | |
| 		return state.is(BlockTags.SOUL_FIRE_BASE_BLOCKS);
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	protected boolean canBurn(BlockState state) {
 | |
| 		return true;
 | |
| 	}
 | |
| }
 |