mirror of https://github.com/cabaletta/baritone
change name to renderGoalAnimated
This commit is contained in:
parent
73e0700ea3
commit
dda4928693
|
@ -598,7 +598,7 @@ public final class Settings {
|
|||
/**
|
||||
* Render the goal as just a box instead of sick animated thingy
|
||||
*/
|
||||
public final Setting<Boolean> renderGoalAsBox = new Setting<>(false);
|
||||
public final Setting<Boolean> renderGoalAnimated = new Setting<>(true);
|
||||
|
||||
/**
|
||||
* Render selection boxes
|
||||
|
|
|
@ -208,7 +208,7 @@ public final class PathRenderer implements IRenderer {
|
|||
double minZ, maxZ;
|
||||
double minY, maxY;
|
||||
double y, y1, y2;
|
||||
if (settings.renderGoalAsBox.value) {
|
||||
if (!settings.renderGoalAnimated.value) {
|
||||
// y = 1 causes rendering issues when the player is at the same y as the top of a block for some reason
|
||||
y = .999F;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue