Improve RSP Identifier ToString.

This commit is contained in:
Ottermandias 2025-01-14 15:20:37 +01:00
parent 9c25fab183
commit 9559bd7358

View file

@ -40,6 +40,9 @@ public readonly record struct RspIdentifier(SubRace SubRace, RspAttribute Attrib
public MetaManipulationType Type public MetaManipulationType Type
=> MetaManipulationType.Rsp; => MetaManipulationType.Rsp;
public override string ToString()
=> $"RSP - {SubRace.ToName()} - {Attribute.ToFullString()}";
} }
[JsonConverter(typeof(Converter))] [JsonConverter(typeof(Converter))]