Fixing second-person verb misconjugation due to missing breaks in switch statement

This commit is contained in:
Jean Viscogliosi-Pate 2025-02-22 17:21:01 -08:00
parent cb1302c6f6
commit 1c022e5180
3 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"name": "metamorpov",
"title": "MetamorPOV",
"version": "1.2.0",
"version": "1.2.1",
"description": "Enables customization of reader-insert stories by replacing author-provided hooks such as Y/n, pov/s, and vrb/do/present/.",
"type": "module",
"repository": {

View File

@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "MetamorPOV",
"author": "Jean Viscogliosi-Pate",
"version": "1.2.0",
"version": "1.2.1",
"description": "Enables customization of reader-insert stories by replacing author-provided hooks such as Y/n, pov/s, and vrb/do/present/.",

View File

@ -310,10 +310,13 @@ function verbMethod(node, searchTerm, options) {
} else {
povIndex = getPovIndex(options.pov, options);
}
break;
case "b":
povIndex = getPovIndex(options.pov, options);
break;
case "N": /* N and n are always third-person */
povIndex = getPovIndex("third-singular", null);
break;
case "n":
povIndex = getPovIndex("third", options);
}