what is locked folk?

This commit is contained in:
Canis Artorus 2023-02-23 12:44:29 -07:00
parent 2ea53d2688
commit 1c3ec99c59
4 changed files with 29 additions and 38 deletions

View file

@ -813,7 +813,7 @@ window.Religions = (function () {
for (let i = cultures.length; i < religions.length; i++) {
const faith = religions.find(r => r.i === i);
if (faith) {
if (faith.type === "Folk" && !faith.locked)
if (faith.type === "Folk" && !faith.lock)
tReligions.push({...faith, removed: true});
else tReligions.push(faith);
}