Skip to content
Snippets Groups Projects
Commit 4a6fb92e authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fixes' into 'pregmod-master'

Re-fix

See merge request pregmodfan/fc-pregmod!4790
parents 32381e1f c6d413cf
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ window.FutureSocieties = (function() {
PetiteAdmiration: "FSPetiteAdmiration",
StatuesqueGlorification: "FSStatuesqueGlorification"
};
const SocietyList = Object.keys(FSString2Property).map(key => FSString2Property[key]); // This returns an array containing the values of FSString2Property. E.g. "FSSupremacist" and "FSSubjugationist"
const SocietyList = [...new Set(Object.keys(FSString2Property).map(key => FSString2Property[key]))]; // This returns an array containing the unique values of FSString2Property. E.g. "FSSupremacist" and "FSSubjugationist"
return {
remove: removeFS,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment