From 23ddbf0109adccaf46016367c0ce236b5017fec0 Mon Sep 17 00:00:00 2001 From: raeleus Date: Sat, 26 Oct 2024 16:53:52 -0700 Subject: [PATCH] Fixed missing period in #attack. Resolves #79 --- Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Input.js b/Input.js index 1585e49..a36582c 100644 --- a/Input.js +++ b/Input.js @@ -1957,7 +1957,7 @@ function doAttack(command) { var text if (score + modifier >= targetRoll) text = `\n${toTitleCase(character.name)} successfully hit ${targetText}!` - else text = `\n${toTitleCase(character.name)} ${tryWord} to hit ${targetText} ${toTitleCase(character.name)} ${missWord}!` + else text = `\n${toTitleCase(character.name)} ${tryWord} to hit ${targetText}. ${toTitleCase(character.name)} ${missWord}!` if (score == 20) text += " Critical success! Your attack is exceptionally damaging!" else if (score == 1) text += " Critical failure! Your attack missed in a spectacular way!"