no more bugs with some lands selected

This commit is contained in:
Zeno Rogue 2019-05-20 13:37:47 +02:00
parent a9f3b3d77c
commit 22da59782d
1 changed files with 2 additions and 1 deletions

View File

@ -305,7 +305,8 @@ eLand getNewLand(eLand old) {
#endif
if(tactic::on && !(tactic::trailer && old == specialland)) return specialland;
if((weirdhyperbolic || cheater) && specialland != old && specialland != laCrossroads4 && specialland != laIce && !chaosmode && old != laBarrier) return specialland;
if((weirdhyperbolic || cheater) && specialland != old && specialland != laCrossroads4 && specialland != laIce && !chaosmode && old != laBarrier && !isCyclic(specialland) && specialland != laBrownian)
return specialland;
if(yendor::on && (yendor::clev().flags & YF_WALLS)) {
if(old != yendor::clev().l) return yendor::clev().l;