diff --git a/package.json b/package.json index 306c6ae..d4394fe 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/manifest.json b/src/manifest.json index 4c4aaf3..c69830f 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -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/.", diff --git a/src/replace-words.js b/src/replace-words.js index 90ed64a..d922cd3 100644 --- a/src/replace-words.js +++ b/src/replace-words.js @@ -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); }