We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug Fail to execute correct CSML steps after wrong action is use in a CSML function in another bot
To Reproduce bot: A fn toto(): say "plop" return 1
start: if (a) say "Hi" goto end
bot: B start: if (a) say "Hi" goto end
Expected behavior I expect bot B to work even if bot A fails
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Fail to execute correct CSML steps after wrong action is use in a CSML function in another bot
To Reproduce
bot: A
fn toto():
say "plop"
return 1
start:
if (a) say "Hi"
goto end
bot: B
start:
if (a) say "Hi"
goto end
Expected behavior
I expect bot B to work even if bot A fails
The text was updated successfully, but these errors were encountered: