This commit is contained in:
TheGiddyLimit
2024-03-24 23:47:02 +00:00
parent 84065a027d
commit 12f34a38f8
153 changed files with 90818 additions and 1900 deletions

View File

@@ -1553,7 +1553,7 @@ class CreatureParser extends BaseParser {
// regular creatures
// region Size
const reSize = new RegExp(`(${Object.values(Parser.SIZE_ABV_TO_FULL).join("|")})`, "i");
const reSize = new RegExp(`\\b(${Object.values(Parser.SIZE_ABV_TO_FULL).join("|")})\\b`, "i");
const reSizeGlobal = new RegExp(reSize, "gi");
const tks = meta.curLine.split(reSizeGlobal);