lilgallon / Bettercolors

⚔️ Minecraft assistance mod built with Forge AND Fabric. For MC 1.8.9, 1.12.2, 1.13.2, 1.14.4, 1.15.2, 1.16.x, 1.17.X, 1.18.X, 1.19.X
Apache License 2.0
39 stars 2 forks source link

Aim assistance's max range is 10 #54

Closed lilgallon closed 4 years ago

lilgallon commented 4 years ago
AxisAlignedBB area = new AxisAlignedBB(
        playerX - 10,
        playerY - 10,
        playerZ - 10,
        playerX + 10,
        playerY + 10,
        playerZ + 10
);

needs to be changed to

AxisAlignedBB area = new AxisAlignedBB(
        playerX - range,
        playerY - range,
        playerZ - range,
        playerX + range,
        playerY + range,
        playerZ + range
);

in AimAssistance.java

lilgallon commented 4 years ago

Fixed in Bettercolors 6.2.0 by this commit a024f8480b99476af5b93d00b6fa226a03b483b8

lilgallon commented 4 years ago

fixed in 7.0.0