1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-29 19:40:35 +00:00

rulegen-tests:: -urq now has a parameter detailing what you want to do

This commit is contained in:
Zeno Rogue 2022-07-12 10:47:40 +02:00
parent 98d95a520c
commit 37f8479629

View File

@ -1866,9 +1866,9 @@ int testargs() {
stop_game();
shift(); int i = argi();
reg3::reg3_rule_available = (i & 8) ? 0 : 1;
fieldpattern::use_rule_fp = (i & 1) ? 0 : 1;
fieldpattern::use_quotient_fp = (i & 2) ? 0 : 1;;
reg3::minimize_quotient_maps = (i & 4) ? 0 : 1;;
fieldpattern::use_rule_fp = (i & 1) ? 1 : 0;
fieldpattern::use_quotient_fp = (i & 2) ? 1 : 0;
reg3::minimize_quotient_maps = (i & 4) ? 1 : 0;
}
else return 1;