We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd04cf commit 68ca926Copy full SHA for 68ca926
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