修改炮弹实体的重力

This commit is contained in:
17146 2024-05-31 23:57:47 +08:00
parent 2f1b4ebe3b
commit 2b02eac98b

View file

@ -93,4 +93,9 @@ public class MortarShellEntity extends ThrowableItemProjectile {
this.discard();
}
}
@Override
protected float getGravity() {
return 0.05F;
}
}