Fix for unwanted audio panning (#3430)

* Fixes https://github.com/IntellectualSites/PlotSquared/issues/3422

* Removed old code

Co-authored-by: Alex <mc.cache@web.de>
This commit is contained in:
StealWonders 2022-01-11 11:02:23 +01:00 committed by GitHub
parent 8f7c2e4c02
commit 6fc4005c72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,7 @@ public class PlotListener {
Location location = player.getLocation();
Location lastLocation = musicMeta.get().orElse(null);
if (lastLocation != null) {
player.playMusic(lastLocation, musicFlag);
plot.getCenter(center -> player.playMusic(center.add(0, Short.MAX_VALUE, 0), musicFlag));
if (musicFlag == ItemTypes.AIR) {
musicMeta.remove();
}
@ -289,7 +289,7 @@ public class PlotListener {
if (musicFlag != ItemTypes.AIR) {
try {
musicMeta.set(location);
player.playMusic(location, musicFlag);
plot.getCenter(center -> player.playMusic(center.add(0, Short.MAX_VALUE, 0), musicFlag));
} catch (Exception ignored) {
}
}