mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Change some machine sounds to METAL (Fixing #1429)
This commit is contained in:
parent
ec7b26c3b9
commit
43312e2eb4
10 changed files with 20 additions and 10 deletions
|
@ -16,6 +16,7 @@ import net.minecraft.core.BlockPos;
|
|||
import net.minecraft.world.InteractionResult;
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -27,7 +28,7 @@ import javax.annotation.Nullable;
|
|||
public class BlockBioReactor extends DirectionalBlock.Container {
|
||||
|
||||
public BlockBioReactor() {
|
||||
super(ActuallyBlocks.defaultPickProps(2.0F, 10.0F));
|
||||
super(ActuallyBlocks.defaultPickProps(2.0F, 10.0F).sound(SoundType.METAL));
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
@ -20,6 +20,7 @@ import net.minecraft.world.InteractionResult;
|
|||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -32,7 +33,7 @@ import javax.annotation.Nullable;
|
|||
|
||||
public class BlockCoalGenerator extends DirectionalBlock.Container {
|
||||
public BlockCoalGenerator() {
|
||||
super(ActuallyBlocks.defaultPickProps().randomTicks());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL).randomTicks());
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
@ -19,6 +19,7 @@ import net.minecraft.world.entity.player.Player;
|
|||
import net.minecraft.world.item.ItemStack;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -31,7 +32,7 @@ import javax.annotation.Nullable;
|
|||
|
||||
public class BlockCoffeeMachine extends DirectionalBlock.Container {
|
||||
public BlockCoffeeMachine() {
|
||||
super(ActuallyBlocks.defaultPickProps());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -24,6 +24,7 @@ import net.minecraft.world.item.context.BlockPlaceContext;
|
|||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -41,7 +42,7 @@ public class BlockCrusher extends BlockContainerBase {
|
|||
private final boolean isDouble;
|
||||
|
||||
public BlockCrusher(boolean isDouble) {
|
||||
super(ActuallyBlocks.defaultPickProps().randomTicks());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL).randomTicks());
|
||||
this.isDouble = isDouble;
|
||||
this.registerDefaultState(getStateDefinition().any().setValue(HORIZONTAL_FACING, Direction.NORTH).setValue(LIT, false));
|
||||
}
|
||||
|
|
|
@ -23,6 +23,7 @@ import net.minecraft.world.entity.player.Player;
|
|||
import net.minecraft.world.item.ItemStack;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -36,7 +37,7 @@ import javax.annotation.Nullable;
|
|||
public class BlockDisplayStand extends BlockContainerBase {
|
||||
|
||||
public BlockDisplayStand(boolean empowerer) {
|
||||
super(ActuallyBlocks.defaultPickProps());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL));
|
||||
isEmpowerer = empowerer;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@ import net.minecraft.core.BlockPos;
|
|||
import net.minecraft.world.InteractionResult;
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -29,7 +30,7 @@ public class BlockEnergizer extends BlockContainerBase {
|
|||
private final boolean isEnergizer;
|
||||
|
||||
public BlockEnergizer(boolean isEnergizer) {
|
||||
super(ActuallyBlocks.defaultPickProps(2.0F, 10.0F));
|
||||
super(ActuallyBlocks.defaultPickProps(2.0F, 10.0F).sound(SoundType.METAL));
|
||||
this.isEnergizer = isEnergizer;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ import net.minecraft.core.BlockPos;
|
|||
import net.minecraft.world.InteractionResult;
|
||||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -27,7 +28,7 @@ import javax.annotation.Nullable;
|
|||
public class BlockFarmer extends DirectionalBlock.Container {
|
||||
|
||||
public BlockFarmer() {
|
||||
super(ActuallyBlocks.defaultPickProps());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL));
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
@ -20,6 +20,7 @@ import net.minecraft.network.chat.Component;
|
|||
import net.minecraft.world.entity.player.Player;
|
||||
import net.minecraft.world.item.ItemStack;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -33,7 +34,7 @@ import javax.annotation.Nullable;
|
|||
public class BlockLavaFactoryController extends DirectionalBlock.Container implements IHudDisplay {
|
||||
|
||||
public BlockLavaFactoryController() {
|
||||
super(ActuallyBlocks.defaultPickProps(4.5F, 20.0F));
|
||||
super(ActuallyBlocks.defaultPickProps(4.5F, 20.0F).sound(SoundType.METAL));
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
@ -22,6 +22,7 @@ import net.minecraft.world.entity.player.Player;
|
|||
import net.minecraft.world.item.ItemStack;
|
||||
import net.minecraft.world.level.BlockGetter;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -35,7 +36,7 @@ import javax.annotation.Nullable;
|
|||
public class BlockOilGenerator extends DirectionalBlock.Container {
|
||||
|
||||
public BlockOilGenerator() {
|
||||
super(ActuallyBlocks.defaultPickProps().randomTicks());
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL).randomTicks());
|
||||
}
|
||||
|
||||
@Nullable
|
||||
|
|
|
@ -27,6 +27,7 @@ import net.minecraft.world.item.TooltipFlag;
|
|||
import net.minecraft.world.item.context.BlockPlaceContext;
|
||||
import net.minecraft.world.level.Level;
|
||||
import net.minecraft.world.level.block.Block;
|
||||
import net.minecraft.world.level.block.SoundType;
|
||||
import net.minecraft.world.level.block.entity.BlockEntity;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityTicker;
|
||||
import net.minecraft.world.level.block.entity.BlockEntityType;
|
||||
|
@ -42,7 +43,7 @@ import static net.minecraft.world.level.block.state.properties.BlockStatePropert
|
|||
|
||||
public class BlockPoweredFurnace extends DirectionalBlock.Container {
|
||||
public BlockPoweredFurnace() {
|
||||
super(ActuallyBlocks.defaultPickProps().randomTicks().lightLevel(state -> state.getValue(LIT)
|
||||
super(ActuallyBlocks.defaultPickProps().sound(SoundType.METAL).randomTicks().lightLevel(state -> state.getValue(LIT)
|
||||
? 12
|
||||
: 0));
|
||||
|
||||
|
|
Loading…
Reference in a new issue