1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

retry not failure on neg rule mismatch

This commit is contained in:
Zeno Rogue 2021-12-27 20:20:10 +01:00
parent 77bfa5c9a7
commit eb8ea9c735

View File

@ -1340,7 +1340,7 @@ void rules_iteration_for(twalker& cw) {
if(r[z] == cids[z]) continue;
if(r[z] < 0 || cids[z] < 0) {
debuglist = { cwmain, ts.giver };
throw rulegen_failure("neg rule mismatch");
throw rulegen_retry("neg rule mismatch");
}
auto tg = ts.giver;