Skip to content

Commit

Permalink
Add ymax to nofall debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
asofold committed May 23, 2013
1 parent c77dbff commit 87f83ff
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -180,7 +180,7 @@ else if (cc.noFallAntiCriticals && (toReset || toOnGround || (fromReset || fromO
}

if (cc.debug){
System.out.println(player.getName() + " NoFall: mc=" + StringUtil.fdec3.format(mcFallDistance) +" / nf=" + StringUtil.fdec3.format(data.noFallFallDistance) + (oldNFDist < data.noFallFallDistance ? " (+" + StringUtil.fdec3.format(data.noFallFallDistance - oldNFDist) + ")" : ""));
System.out.println(player.getName() + " NoFall: mc=" + StringUtil.fdec3.format(mcFallDistance) +" / nf=" + StringUtil.fdec3.format(data.noFallFallDistance) + (oldNFDist < data.noFallFallDistance ? " (+" + StringUtil.fdec3.format(data.noFallFallDistance - oldNFDist) + ")" : "") + " | ymax=" + StringUtil.fdec3.format(data.noFallMaxY));
}

}
Expand Down

0 comments on commit 87f83ff

Please sign in to comment.