setTooltip("Sets how far the overview-map scans the map when you move.\nHigher values will mean increased lag when you move");
}
public String getText() {
int radius = (int) (this.getSliderPosition() * (MAX_RADIUS - MIN_RADIUS) + MIN_RADIUS);
ChatColor color = ChatColor.WHITE;
if (radius > 3) {
color = ChatColor.YELLOW;
}
if (radius > 4) {
color = ChatColor.GOLD;