Skip to content

Commit

Permalink
Merge branch 'godotengine:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimisticQuan authored Nov 11, 2021
2 parents a900eaf + 363160e commit b7445a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/debugger/debug_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,10 @@ export class GodotDebugSession extends LoggingDebugSession {
});
client_lines.forEach((l) => {
if (bp_lines.indexOf(l) === -1) {
this.debug_data.set_breakpoint(path, l);
let bp = args.breakpoints.find((bp_at_line) => (bp_at_line.line == l));
if (!bp.condition) {
this.debug_data.set_breakpoint(path, l);
}
}
});

Expand Down

0 comments on commit b7445a7

Please sign in to comment.