use player y instead of player eye y

This commit is contained in:
Oth3r 2025-02-13 15:59:46 -06:00
commit e76629af32
2 changed files with 10 additions and 9 deletions

View file

@ -155,9 +155,9 @@ public class ServerConfig implements CustomFile<ServerConfig> {
public static class YDifferenceLimit {
@SerializedName("above")
private Double above = 0.1;
private Double above = 1.0;
@SerializedName("below")
private Double below = 3.0;
private Double below = 1.0;
public YDifferenceLimit() {
}