diff --git a/src/main/java/com/wenxin2/marioverse/blocks/WarpPipeBlock.java b/src/main/java/com/wenxin2/marioverse/blocks/WarpPipeBlock.java index 7faf7c6b..e297e01b 100644 --- a/src/main/java/com/wenxin2/marioverse/blocks/WarpPipeBlock.java +++ b/src/main/java/com/wenxin2/marioverse/blocks/WarpPipeBlock.java @@ -708,7 +708,7 @@ public static void warp(Entity entity, BlockPos warpPos, Level world, BlockState WarpPipeBlock.markEntityTeleported(entity); } world.gameEvent(GameEvent.TELEPORT, warpPos, GameEvent.Context.of(entity)); - world.playSound(null, warpPos, SoundRegistry.PIPE_WARPS.get(), SoundSource.BLOCKS, 1.0F, 0.1F); + world.playSound(null, warpPos, SoundRegistry.PIPE_WARPS.get(), SoundSource.BLOCKS, 1.0F, 1.0F); } public static BlockPos findMatchingUUID(UUID uuid, Level world, BlockPos pos) { diff --git a/src/main/resources/assets/marioverse/sounds.json b/src/main/resources/assets/marioverse/sounds.json index 598d9519..83baa3c9 100644 --- a/src/main/resources/assets/marioverse/sounds.json +++ b/src/main/resources/assets/marioverse/sounds.json @@ -20,8 +20,8 @@ { "name": "block/iron_trapdoor/close3", "stream": false }, { "name": "block/iron_trapdoor/close4", "stream": false }], "subtitle": "subtitles.marioverse.block.pipe_closes" }, - "block.pipe_warps": {"category": "block", "sounds": [{ "name": "mob/endermen/portal", "stream": false }, - { "name": "mob/endermen/portal2", "stream": false }], "subtitle": "subtitles.marioverse.block.pipe_warps" }, + "block.pipe_warps": {"category": "block", "sounds": [{ "name": "marioverse:block/pipe_warps", "stream": false }, + { "name": "mmarioverse:block/pipe_warps", "stream": false }], "subtitle": "subtitles.marioverse.block.pipe_warps" }, "block.power_up_spawns": {"category": "block", "sounds": [{ "name": "marioverse:block/power_up_spawns", "stream": false }], "subtitle": "subtitles.marioverse.block.power_up_spawns" }, diff --git a/src/main/resources/assets/marioverse/sounds/block/pipe_warps.ogg b/src/main/resources/assets/marioverse/sounds/block/pipe_warps.ogg new file mode 100644 index 00000000..6eaa0a63 Binary files /dev/null and b/src/main/resources/assets/marioverse/sounds/block/pipe_warps.ogg differ