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

Use correct variable for squid Y motion. Fixes BUKKIT-2648

Dieser Commit ist enthalten in:
Travis Watkins 2012-10-28 03:23:48 -05:00
Ursprung c675cc0b3b
Commit 9841b77009

Datei anzeigen

@ -101,7 +101,7 @@ public class EntitySquid extends EntityWaterAnimal {
if (!this.world.isStatic) {
this.motX = (double) (this.bO * this.bL);
this.motY = (double) (this.bN * this.bL);
this.motY = (double) (this.bP * this.bL);
this.motZ = (double) (this.bQ * this.bL);
}