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

fixed sizes_known returning true incorrectly in INVERSE

This commit is contained in:
Zeno Rogue 2024-02-22 20:30:06 +01:00
parent 6c682510bc
commit 5508fb7183

View File

@ -409,7 +409,8 @@ EX bool sizes_known() {
if(aperiodic) return false;
if(currentmap->strict_tree_rules()) return true;
if(arb::in()) return false;
return true;
if(INVERSE) return false;
return true;
}
EX bool trees_known() {