Skip to content

Commit

Permalink
Merge pull request #78 from pohky/macrocode
Browse files Browse the repository at this point in the history
Revert SeString ToString change
  • Loading branch information
NotAdam authored Mar 3, 2024
2 parents f621d8c + 8ab9ebb commit 0fd470c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Lumina/Text/SeString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ private ImmutableList< BasePayload > BuildPayloads()
// }

public override string ToString()
{
return RawString;
}

/// <summary>
/// Gets a Macro Code representation of the Text and Payloads contained.
/// </summary>
public string ToMacroString()
{
return string.Concat( Payloads );
}
Expand Down

0 comments on commit 0fd470c

Please sign in to comment.