Skip to content

Commit

Permalink
Fix FormatException in PlaceholderExpression
Browse files Browse the repository at this point in the history
  • Loading branch information
Haselnussbomber committed Feb 9, 2024
1 parent 40dab50 commit 58b9d2f
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 58b9d2f

Please sign in to comment.