1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 16:37:40 +00:00

removed tactic::trailer

This commit is contained in:
Zeno Rogue
2020-03-27 19:57:57 +01:00
parent 32baf01192
commit 63c9cc1060
5 changed files with 4 additions and 20 deletions

View File

@@ -154,7 +154,7 @@ EX void countHyperstoneQuest(int& i1, int& i2) {
EX bool hyperstonesUnlocked() {
int i1, i2;
if(tactic::on && isCrossroads(specialland) && !tactic::trailer) return true;
if(tactic::on && isCrossroads(specialland)) return true;
countHyperstoneQuest(i1, i2);
return i1 == i2;
}
@@ -331,7 +331,7 @@ EX eLand getNewLand(eLand old) {
}
#endif
if(tactic::on && !(tactic::trailer && old == specialland)) return specialland;
if(tactic::on) return specialland;
if((weirdhyperbolic || cheater) && specialland != old && specialland != laCrossroads4 && specialland != laIce && !chaosmode && old != laBarrier && !isCyclic(specialland) && specialland != laBrownian)
return specialland;