mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-25 00:25:27 +02:00
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:
@@ -281,7 +281,7 @@ public class PlotListener {
|
|||||||
Location location = player.getLocation();
|
Location location = player.getLocation();
|
||||||
Location lastLocation = musicMeta.get().orElse(null);
|
Location lastLocation = musicMeta.get().orElse(null);
|
||||||
if (lastLocation != 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) {
|
if (musicFlag == ItemTypes.AIR) {
|
||||||
musicMeta.remove();
|
musicMeta.remove();
|
||||||
}
|
}
|
||||||
@@ -289,7 +289,7 @@ public class PlotListener {
|
|||||||
if (musicFlag != ItemTypes.AIR) {
|
if (musicFlag != ItemTypes.AIR) {
|
||||||
try {
|
try {
|
||||||
musicMeta.set(location);
|
musicMeta.set(location);
|
||||||
player.playMusic(location, musicFlag);
|
plot.getCenter(center -> player.playMusic(center.add(0, Short.MAX_VALUE, 0), musicFlag));
|
||||||
} catch (Exception ignored) {
|
} catch (Exception ignored) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user