auto-land-rotation now works even if CAP_ORIENTATION is on

This commit is contained in:
Zeno Rogue 2022-07-17 12:46:44 +02:00
parent 2f7a6194a6
commit 11426c30b3
1 changed files with 1 additions and 2 deletions

View File

@ -1866,8 +1866,7 @@ void hrmap_standard::draw_at(cell *at, const shiftmatrix& where) {
}
EX bool keep_vertical() {
if(CAP_ORIENTATION) return false;
if((WDIM == 2 || prod) && GDIM == 3 && vid.fixed_yz) return true;
if((WDIM == 2 || prod) && GDIM == 3 && vid.fixed_yz) return !CAP_ORIENTATION;
if(downseek.qty) return true;
return false;
}