1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00

fixed the conflict of walking::on and fixed_yz

This commit is contained in:
Zeno Rogue 2024-10-11 09:41:37 +02:00
parent f10902d1e5
commit 21dfe6a27f

View File

@ -2062,6 +2062,7 @@ void hrmap_standard::draw_at(cell *at, const shiftmatrix& where) {
} }
EX bool has_fixed_yz() { EX bool has_fixed_yz() {
if(walking::on) return false;
return (embedded_plane || mhybrid || nil || (euclid && WDIM == 3) || sol || nih || (cgflags & qSTRETCHABLE) || (hyperbolic && bt::in())); return (embedded_plane || mhybrid || nil || (euclid && WDIM == 3) || sol || nih || (cgflags & qSTRETCHABLE) || (hyperbolic && bt::in()));
} }