1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-22 23:17:04 +00:00

fix CR4 achievement

This commit is contained in:
Zeno Rogue 2020-08-20 19:32:59 +02:00
parent dac3a3260a
commit e87da576e4

View File

@ -1521,7 +1521,7 @@ EX void movecost(cell* from, cell *to, int phase) {
} }
#endif #endif
if(to->land ==laDesert && !geometry && (phase & 2) && !cheater) { if(to->land == laCrossroads4 && !geometry && (phase & 2) && !cheater) {
achievement_gain_once("CR4"); achievement_gain_once("CR4");
changes.value_set(chaosUnlocked, true); changes.value_set(chaosUnlocked, true);
} }