mirror of
https://github.com/songoda/EpicVouchers.git
synced 2024-11-22 10:05:15 +01:00
Fixed an issue with incompatible sounds.
This commit is contained in:
parent
d58cac4ee4
commit
f0d44f1756
@ -1,5 +1,6 @@
|
||||
package com.songoda.epicvouchers.voucher;
|
||||
|
||||
import com.songoda.core.compatibility.CompatibleSound;
|
||||
import com.songoda.core.utils.TextUtils;
|
||||
import com.songoda.epicvouchers.EpicVouchers;
|
||||
import com.songoda.epicvouchers.events.VoucherRedeemEvent;
|
||||
@ -142,7 +143,11 @@ public class VoucherExecutor {
|
||||
}
|
||||
|
||||
if (voucher.getSound() != null && !voucher.getSound().isEmpty()) {
|
||||
player.playSound(player.getLocation(), Sound.valueOf(voucher.getSound()), Integer.MAX_VALUE, voucher.getSoundPitch());
|
||||
try {
|
||||
CompatibleSound sound = CompatibleSound.valueOf(voucher.getSound());
|
||||
sound.play(player, Integer.MAX_VALUE, voucher.getSoundPitch());
|
||||
} catch (IllegalArgumentException ignored) {
|
||||
}
|
||||
}
|
||||
|
||||
String particle = voucher.getParticle();
|
||||
|
Loading…
Reference in New Issue
Block a user