Add New azazelthedemonlord Textures
All checks were successful
EnergonRelics/pipeline/head This commit looks good
@ -29,7 +29,7 @@ public class ForcefieldProjectorBlockEntity extends EnergyReceiverBlockEntity {
|
||||
BlockState targetState = getWorld().getBlockState(targetPos);
|
||||
if (targetState.isAir()) {
|
||||
getWorld().setBlockState(targetPos, state);
|
||||
} else if (targetState.getBlock() != EnergonRelics.FORCEFIELD_BLOCK) {
|
||||
} else if (targetState != state) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -102,7 +102,7 @@ public class ForcefieldBlock extends SimpleBlock {
|
||||
@Override
|
||||
@Environment(EnvType.CLIENT)
|
||||
public boolean isSideInvisible(BlockState state, BlockState stateFrom, Direction direction) {
|
||||
return stateFrom.isOf(this) || super.isSideInvisible(state, stateFrom, direction);
|
||||
return stateFrom == state || super.isSideInvisible(state, stateFrom, direction);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
After Width: | Height: | Size: 569 B |
After Width: | Height: | Size: 573 B |
After Width: | Height: | Size: 475 B |
After Width: | Height: | Size: 559 B |
After Width: | Height: | Size: 588 B |
After Width: | Height: | Size: 557 B |
After Width: | Height: | Size: 578 B |