GoalNear#toString

This commit is contained in:
Brady 2018-08-31 16:32:15 -05:00
parent a93af3404b
commit f10e010e20
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 10 additions and 0 deletions

View File

@ -51,4 +51,14 @@ public class GoalNear implements Goal {
public BlockPos getGoalPos() {
return new BlockPos(x, y, z);
}
@Override
public String toString() {
return "GoalNear{" +
"x=" + x +
", y=" + y +
", z=" + z +
", rangeSq=" + rangeSq +
'}';
}
}