pmotschmann / Evolve

An incremental game about evolving a civilization
Mozilla Public License 2.0
794 stars 343 forks source link

Unlocking wagons for Demonic races, slight fix for not wendigo check #1112

Open saltshaker opened 3 months ago

saltshaker commented 3 months ago

1075 attempted to fix #1063 by adding a demonic-specific alt unlock for the wagon tech. This did not actually fix the problem because the not wendigo check !global.race.species === 'wendigo' is always false due to the not operator being applied to global.race.species instead of the boolean result. Switching to a strict inequality fixes this and matches the style of other inequality checks in the file.