This commit is contained in:
Leijurv 2018-08-25 07:07:09 -07:00
parent 21c1fc09e7
commit db6453fae0
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class GoalYLevel implements Goal {
} }
if (pos.getY() < level) { if (pos.getY() < level) {
// need to ascend // need to ascend
return (level - pos.getY()) * JUMP_ONE_BLOCK_COST * 0.9; return (level - pos.getY()) * JUMP_ONE_BLOCK_COST;
} }
return 0; return 0;
} }