fix: wrong name applied to types

This commit is contained in:
Kadir Sirimsi 2025-02-10 14:12:14 +01:00
parent f8f5b9b337
commit cf30879171
No known key found for this signature in database
GPG Key ID: A21C0144C2D2A134

View File

@ -4,8 +4,8 @@ import java.util.Arrays;
public enum ItemType {
AgedBrie("Aged Brie"),
BackstagePass("Sulfuras, Hand of Ragnaros"),
Sulfuras("Backstage passes to a TAFKAL80ETC concert");
BackstagePass("Backstage passes to a TAFKAL80ETC concert"),
Sulfuras("Sulfuras, Hand of Ragnaros");
private final String name;