In "LifeInTheFrontier.js" file, in the "this.$loadOXPFlags" function, the following code is incorrect:
Code: Select all
if (vartype = "S") {
this.LITF_flags[varname] = OXPFlagsItem[1];
} else if (vartype = "N") {
this.LITF_flags[varname] = parseInt(OXPFlagsItem[1]);
}
Code: Select all
if (vartype == "S") {
this.LITF_flags[varname] = OXPFlagsItem[1];
} else if (vartype == "N") {
this.LITF_flags[varname] = parseInt(OXPFlagsItem[1]);
}