Skip to content

Commit

Permalink
Merge pull request #29 from nobodywho-ooo/bugfix-infinite-loop
Browse files Browse the repository at this point in the history
Fix: add break to avoid infinite loop
  • Loading branch information
AsbjornOlling authored Nov 25, 2024
2 parents 814e514 + 0813481 commit c359b75
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nobodywho/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ macro_rules! emit_tokens {
godot_error!("Unexpected: Model channel disconnected");
}
}
} else {
break;
}
}
}};
Expand Down

0 comments on commit c359b75

Please sign in to comment.