mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2025-02-05 22:31:26 +01:00
Add comment.
This commit is contained in:
parent
62102c7d8b
commit
9e4badbe4e
@ -1157,7 +1157,10 @@ public class BlockProperties {
|
||||
if ((access.getData(bx, by, bz) & 0x4) != 0){
|
||||
if (Math.max(fy, fy + dY * dT) < 0.5) return true;
|
||||
}
|
||||
else if (Math.min(fy, fy + dY * dT) >= 0.5) return true;
|
||||
else{
|
||||
// what with >= 1?
|
||||
if (Math.min(fy, fy + dY * dT) >= 0.5) return true;
|
||||
}
|
||||
}
|
||||
else if (id == Material.SOUL_SAND.getId()){
|
||||
if (Math.min(fy, fy + dY * dT) >= 0.875) return true; // 0.125
|
||||
|
Loading…
Reference in New Issue
Block a user