mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-18 11:22:15 +01:00
Fix mistranslation issue for PlayerToggleFlightEvent. Fixes BUKKIT-5172
Thanks for pointing it out RingOfStorms!
This commit is contained in:
parent
fbdc3a7a74
commit
4f63a5f255
1 changed files with 1 additions and 1 deletions
|
@ -1602,7 +1602,7 @@ public class PlayerConnection implements PacketPlayInListener {
|
|||
public void a(PacketPlayInAbilities packetplayinabilities) {
|
||||
// CraftBukkit start - d() should be isFlying()
|
||||
if (this.player.abilities.canFly && this.player.abilities.isFlying != packetplayinabilities.d()) {
|
||||
PlayerToggleFlightEvent event = new PlayerToggleFlightEvent(this.server.getPlayer(this.player), packetplayinabilities.f());
|
||||
PlayerToggleFlightEvent event = new PlayerToggleFlightEvent(this.server.getPlayer(this.player), packetplayinabilities.d());
|
||||
this.server.getPluginManager().callEvent(event);
|
||||
if (!event.isCancelled()) {
|
||||
this.player.abilities.isFlying = packetplayinabilities.d(); // Actually set the player's flying status
|
||||
|
|
Loading…
Add table
Reference in a new issue