fix plot music volume to span full plot (#4391)

fix: plot music volume to span full plot
This commit is contained in:
Pierre Maurice Schwang 2024-04-12 20:55:09 +02:00 committed by GitHub
parent ce14036949
commit 9f4f213a8c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ public class BukkitPlayer extends PlotPlayer<Player> {
return;
}
this.player.playSound(BukkitUtil.adapt(location), Sound.valueOf(BukkitAdapter.adapt(id).name()),
SoundCategory.MUSIC, 1f, 1f
SoundCategory.MUSIC, Float.MAX_VALUE, 1f
);
}