We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ac734 commit 27f909eCopy full SHA for 27f909e
1 file changed
common/src/main/java/com/vltno/timeloop/TimeLoop.java
@@ -102,6 +102,9 @@ public static void executeCommand(String command) {
102
* Runs the next iteration of the loop.
103
*/
104
public static void runLoopIteration() {
105
+ if (loopIteration + 1 >= maxLoops) {
106
+ stopLoop();
107
+ }
108
LOOP_LOGGER.info("Starting iteration {} of loop", loopIteration);
109
saveRecordings();
110
removeOldSceneEntries();
0 commit comments