This commit is contained in:
Leijurv 2019-05-02 23:03:10 -07:00
parent a6d4708ccf
commit 0f09a46540
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
1 changed files with 4 additions and 1 deletions

View File

@ -30,8 +30,8 @@ import java.awt.*;
import java.lang.reflect.Field;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.List;
import java.util.*;
import java.util.List;
import java.util.function.Consumer;
/**
@ -81,6 +81,9 @@ public final class Settings {
*/
public final Setting<Double> jumpPenalty = new Setting<>(2D);
/**
* The size of the box that is rendered when the current goal is a GoalYLevel
*/
public final Setting<Double> yLevelBoxSize = new Setting<>(15D);
/**