Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
Merge pull request #1765 from KennyTV/abstraction
Fix toggleglide listener swimming check
Dieser Commit ist enthalten in:
Commit
f3f82c4f1a
@ -18,8 +18,15 @@ import java.util.Arrays;
|
|||||||
|
|
||||||
public class EntityToggleGlideListener extends ViaBukkitListener {
|
public class EntityToggleGlideListener extends ViaBukkitListener {
|
||||||
|
|
||||||
|
private boolean swimmingMethodExists;
|
||||||
|
|
||||||
public EntityToggleGlideListener(ViaVersionPlugin plugin) {
|
public EntityToggleGlideListener(ViaVersionPlugin plugin) {
|
||||||
super(plugin, Protocol1_15To1_14_4.class);
|
super(plugin, Protocol1_15To1_14_4.class);
|
||||||
|
try {
|
||||||
|
Player.class.getMethod("isSwimming");
|
||||||
|
swimmingMethodExists = true;
|
||||||
|
} catch (NoSuchMethodException ignored) {
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.MONITOR)
|
@EventHandler(priority = EventPriority.MONITOR)
|
||||||
@ -47,7 +54,7 @@ public class EntityToggleGlideListener extends ViaBukkitListener {
|
|||||||
if (player.isSprinting()) {
|
if (player.isSprinting()) {
|
||||||
bitmask |= 0x08;
|
bitmask |= 0x08;
|
||||||
}
|
}
|
||||||
if (player.isSwimming()) {
|
if (swimmingMethodExists && player.isSwimming()) {
|
||||||
bitmask |= 0x10;
|
bitmask |= 0x10;
|
||||||
}
|
}
|
||||||
if (player.hasPotionEffect(PotionEffectType.INVISIBILITY)) {
|
if (player.hasPotionEffect(PotionEffectType.INVISIBILITY)) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren