mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-24 01:06:01 +01:00
SPIGOT-5689: Fireball.setDirection increases velocity too much
By: md_5 <git@md-5.net>
This commit is contained in:
parent
e9672f330b
commit
3f9b83c715
1 changed files with 3 additions and 3 deletions
|
@ -61,9 +61,9 @@ public class CraftFireball extends AbstractProjectile implements Fireball {
|
|||
double y = direction.getY();
|
||||
double z = direction.getZ();
|
||||
double magnitude = (double) MathHelper.sqrt(x * x + y * y + z * z);
|
||||
getHandle().dirX = x / magnitude;
|
||||
getHandle().dirY = y / magnitude;
|
||||
getHandle().dirZ = z / magnitude;
|
||||
getHandle().dirX = x / magnitude * 0.1D;
|
||||
getHandle().dirY = y / magnitude * 0.1D;
|
||||
getHandle().dirZ = z / magnitude * 0.1D;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue