Skip to content

Commit

Permalink
Added missing newline to XP logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mindphluxnet authored Apr 4, 2022
1 parent 3f17a79 commit 810555a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TalesOfToastPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ private void Awake()

private void PlayerStats_ShowXp(On.PlayerStats.orig_ShowXp orig, PlayerStats self, int amount)
{
AddCombatLogLine(string.Format("You gain {0} experience", amount));
AddCombatLogLine(string.Format("You gain {0} experience\n", amount));
orig.Invoke(self, amount);
}

Expand Down

0 comments on commit 810555a

Please sign in to comment.