CarouselComponent: Lowercase initial display value

This commit is contained in:
noil 2021-01-07 15:45:43 -05:00
parent 90ec06060b
commit fd74c56aa4
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ public final class CarouselComponent extends HudComponent {
super(name); super(name);
this.value = value; this.value = value;
this.displayValue = value.getValue().toString(); this.displayValue = value.getValue().toString().toLowerCase();
this.focused = false; this.focused = false;
} }