mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
fix: type is not defined
This commit is contained in:
parent
60434c9cd2
commit
65143bdd3c
1 changed files with 1 additions and 1 deletions
|
|
@ -916,7 +916,7 @@ window.Religions = (function () {
|
||||||
if (m === "Culture + ism") return [trimVowels(culture) + "ism", "culture"];
|
if (m === "Culture + ism") return [trimVowels(culture) + "ism", "culture"];
|
||||||
if (m === "Place + ian + type") return [place("adj") + " " + type, "state"];
|
if (m === "Place + ian + type") return [place("adj") + " " + type, "state"];
|
||||||
if (m === "Culture + type") return [culture + " " + type, "culture"];
|
if (m === "Culture + type") return [culture + " " + type, "culture"];
|
||||||
if (m === "Burg + ian + type") return [`${place("adj")} ${type()}`, "global"];
|
if (m === "Burg + ian + type") return [`${place("adj")} ${type}`, "global"];
|
||||||
if (m === "Random + ian + type") return [`${getAdjective(random())} ${type}`, "global"];
|
if (m === "Random + ian + type") return [`${getAdjective(random())} ${type}`, "global"];
|
||||||
if (m === "Type + of the + meaning") return [`${type} of the ${generateMeaning()}`, "global"];
|
if (m === "Type + of the + meaning") return [`${type} of the ${generateMeaning()}`, "global"];
|
||||||
return [trimVowels(random()) + "ism", "global"]; // else
|
return [trimVowels(random()) + "ism", "global"]; // else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue