1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-24 01:14:48 +00:00

arbiquotient:: do not talk about mirrors if nonorientable not allowed anyway

This commit is contained in:
Zeno Rogue
2025-10-09 21:14:16 +02:00
parent 0af4788821
commit 819ada9b9f

View File

@@ -175,7 +175,7 @@ string statstring() {
if(goodedges % 2) return "ERROR";
print(s, " E:", goodedges/2);
if(!block_selfedges) print(s, " e:", selfedges);
if(!block_mirrors) print(s, " M:", mirrors);
if(!block_mirrors && allow_nonorientable) print(s, " M:", mirrors);
for(bool star: {false, true}) {
bool first = true;
for(auto p: (star ? mverts : verts)) {