1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 09:50:34 +00:00

rulegen:: tests:: disable timeout on iterate and irradiate

This commit is contained in:
Zeno Rogue 2021-12-24 23:08:47 +01:00
parent a065fc4d86
commit 1343eacc1c

View File

@ -125,6 +125,7 @@ void cleanup_protomap() {
}
void iterate(int qty) {
dynamicval<int> set_timeout(rulegen_timeout, 999999);
for(int i=0; i<qty; i++) {
try {
rules_iteration();
@ -148,6 +149,7 @@ void iterate(int qty) {
void print_rules();
void irradiate() {
dynamicval<int> set_timeout(rulegen_timeout, 999999);
try{
vector<tcell*> last;
auto *c = first_tcell;