Skip to content

Commit

Permalink
🐛 Update loop count
Browse files Browse the repository at this point in the history
  • Loading branch information
asim-shrestha committed Apr 10, 2023
1 parent 9ff6168 commit 0c3d3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AutonomousAgent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class AutonomousAgent {
}

this.numLoops += 1;
if (this.numLoops >= 30) {
if (this.numLoops >= 10) {
this.sendLoopMessage();
this.shutdown();
return;
Expand Down

0 comments on commit 0c3d3d6

Please sign in to comment.