oops
This commit is contained in:
xKylee
2020-01-02 19:05:19 +00:00
parent d8004396da
commit 091f104424

View File

@@ -52,4 +52,26 @@ public interface SkillCalculatorConfig extends Config
{
return true;
}
@ConfigItem(
keyName = "showSecondaries",
name = "Show required secondaries",
description = "Toggles whether the Secondaries will be displayed for the selected item",
position = 2
)
default boolean showSecondaries()
{
return false;
}
@ConfigItem(
keyName = "limitToCurrentLevel",
name = "Respect level requirements",
description = "Toggles whether the exp calculation will limit to your current skill level",
position = 3
)
default boolean limitToCurrentLevel()
{
return true;
}
}