3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 21:10:17 +01:00

Check abilities instead of mode for allow flight check. Fixes BUKKIT-1302

Dieser Commit ist enthalten in:
Travis Watkins 2012-03-24 15:07:14 -05:00 committet von Warren Loo
Ursprung 9c7ffb6d3c
Commit 94d718a146

Datei anzeigen

@ -395,7 +395,7 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
AxisAlignedBB axisalignedbb = this.player.boundingBox.clone().grow((double) f4, (double) f4, (double) f4).a(0.0D, -0.55D, 0.0D);
if (!this.minecraftServer.allowFlight && !this.player.itemInWorldManager.isCreative() && !worldserver.b(axisalignedbb)) {
if (!this.minecraftServer.allowFlight && !this.player.abilities.canFly && !worldserver.b(axisalignedbb)) { // CraftBukkit - check abilities instead of creative mode
if (d9 >= -0.03125D) {
++this.g;
if (this.g > 80) {