Merge branch 'master' of github.com-personal:Azgaar/Fantasy-Map-Generator into burg-groups

This commit is contained in:
Azgaar 2025-10-30 15:29:46 +01:00
commit 8e13a3a0de
8 changed files with 211 additions and 32 deletions

View file

@ -135,7 +135,7 @@ const adjectivizationRules = [
{
name: "an",
probability: 0.5,
condition: new RegExp("^[a-zA-Z]{0-7}$"),
condition: new RegExp("^[a-zA-Z]{0,7}$"),
action: noun => trimVowels(noun) + "an"
}
];