mirror of
https://github.com/raeleus/Hashtag-DnD.git
synced 2025-07-05 05:00:26 -04:00
Title case for characters in initiative order. Resolves #82
This commit is contained in:
parent
bbe1ae509f
commit
bc23453669
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ const modifier = (text) => {
|
|||
} else {
|
||||
var index = 0
|
||||
for (var character of state.initiativeOrder) {
|
||||
text += `${++index}. ${character.name} (Initiative: ${character.calculatedInitiative})\n`
|
||||
text += `${++index}. ${toTitleCase(character.name)} (Initiative: ${character.calculatedInitiative})\n`
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue