Update from Git Manager GUI

This commit is contained in:
2026-02-27 17:45:25 +01:00
parent 2f8bb3f566
commit b8a14fcffc
5 changed files with 95 additions and 50 deletions

View File

@@ -129,7 +129,7 @@ public class Ball {
if (entity == null || entity.isDead() || !active) return;
Location ballLoc = entity.getLocation();
Vector dir = blendDirection(player, 0.65);
double power = cfg("ball.header-power", 1.3);
double power = cfg("gameplay.header-power", 1.3);
dir.setY(Math.max(dir.getY(), -0.05));
dir.multiply(power);
applyKick(dir, ballLoc, 0.85f);