config text not displaying properly
chuckaboo opened this issue ยท 1 comments
my text is appearing like this in my mod menu config screen.
heres my code:
@ConfigEntry.Category("Auto Refill")
@ConfigEntry.Gui.Tooltip
@ConfigEntry.Gui.CollapsibleObject(startExpanded = true)
Refill refill = new Refill();`
public static class Refill {
boolean toggleRefill = false;
@ConfigEntry.BoundedDiscrete(min = 1, max = 5)
int refillSpeed = 2;
}