Comments are now treated as disabled so that they do not interfere with the Dish type. Closes #1126 and #1132. Thanks to @mt3571 for the suggestion.

This commit is contained in:
n1474335 2021-02-03 17:54:49 +00:00
parent 5412fc01b3
commit 041c899a35
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class Recipe {
module: OperationConfig[c.op].module,
ingValues: c.args,
breakpoint: c.breakpoint,
disabled: c.disabled,
disabled: c.disabled || c.op === "Comment",
});
});
}