3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

Interpreter: stop processing at the right spot

This commit is contained in:
Pragmatic Software 2021-08-23 22:11:33 -07:00
parent a9eb7cc24b
commit b7ce503a8d
2 changed files with 4 additions and 1 deletions

View File

@ -660,6 +660,9 @@ sub handle_result {
$result = $context->{split_result} . $result;
}
# nothing more to do here if we have no result or keyword
return 0 if not length $result or not exists $context->{keyword};
# set preserve_whitespace and use_output_queue
# TODO: this should be in Factoids.pm and update $context's flags

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4364,
BUILD_REVISION => 4365,
BUILD_DATE => "2021-08-23",
};