Interpreter: extract_bracketed: missed a state change

This commit is contained in:
Pragmatic Software 2023-05-11 11:02:16 -07:00
parent bc05915905
commit 2b36286c22
2 changed files with 3 additions and 1 deletions

View File

@ -1090,6 +1090,8 @@ sub extract_bracketed($self, $string, $open_bracket = '{', $close_bracket = '}',
} elsif (@prefix) {
$prefix_match = 0;
$state = 'prefixgroup';
} else {
$state = 'openbracket';
}
}

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 => 4673,
BUILD_REVISION => 4674,
BUILD_DATE => "2023-05-11",
};