Skip to content

Commit

Permalink
Fix attributes of th07.5 chara-related enums (cont.)
Browse files Browse the repository at this point in the history
  • Loading branch information
y-iihoshi committed Jan 5, 2025
1 parent d55f2c0 commit e3bbea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TemplateGenerator/Models/Th075/Definitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static class Definitions
public static IEnumerable<string> LevelKeysTotalLast { get; } = LevelWithTotalNames.Keys;

public static IReadOnlyDictionary<string, (string Id, string ShortName, string LongName)> CharacterNames { get; } =
EnumHelper<Chara>.Enumerable.ToDictionary(
EnumHelper<Chara>.Enumerable.Where(static chara => chara != Chara.Meiling).ToDictionary(
static chara => chara.ToPattern(),
static chara => (chara.ToString(), chara.ToCharaName(), chara.ToCharaFullName()));

Expand Down

0 comments on commit e3bbea6

Please sign in to comment.