Skip to content

Commit

Permalink
Merge pull request #77 from Haselnussbomber/fix-expressiontype-format…
Browse files Browse the repository at this point in the history
…ting

Fix FormatException in PlaceholderExpression
  • Loading branch information
NotAdam authored Feb 12, 2024
2 parents 40dab50 + 58b9d2f commit f621d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Lumina/Text/Expressions/PlaceholderExpression.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override string ToString()
ExpressionType.Month => "t_mon",
ExpressionType.Year => "t_year",
ExpressionType.StackColor => "stackcolor",
_ => $"Placeholder#{ExpressionType:X02}"
_ => $"Placeholder#{(byte)ExpressionType:X02}"
};
}

Expand Down

0 comments on commit f621d8c

Please sign in to comment.