1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-15 13:17:13 +00:00

devmods:: added break_autoplay to autoplay

This commit is contained in:
Zeno Rogue
2025-09-09 09:05:15 +02:00
parent ceddf09c8f
commit 923bffe9e9

View File

@@ -389,7 +389,7 @@ void autoplay(int num_moves = 1000000000) {
noteUnusualSituations();
stopIfBug();
if(turncount >= num_moves) return;
if(turncount >= num_moves || break_autoplay) return;
}
}