mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-19 21:48:48 +01:00
Use correct variable for squid Y motion. Fixes BUKKIT-2648
This commit is contained in:
parent
c675cc0b3b
commit
9841b77009
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ public class EntitySquid extends EntityWaterAnimal {
|
||||||
|
|
||||||
if (!this.world.isStatic) {
|
if (!this.world.isStatic) {
|
||||||
this.motX = (double) (this.bO * this.bL);
|
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);
|
this.motZ = (double) (this.bQ * this.bL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue