1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-03 07:54:04 +00:00

rogueviz::qtm:: qmode 4

This commit is contained in:
Zeno Rogue 2025-02-24 10:58:17 +01:00
parent e69ad695f7
commit 01f2c23245

View File

@ -43,6 +43,9 @@ int z_in_wall(int z) {
if(among(z, 1, 3, 4)) return 0;
return 1;
}
if(qmode == 4) {
return gmod(z,14) >= 3 ? 0 : 1;
}
return 1;
}