Merge pull request #31 from limbonaut/fix-transitions-to-self

Disallow LimboHSM transitions to self when ANYSTATE is used
This commit is contained in:
Serhii Snitsaruk 2024-02-07 13:57:43 +01:00 committed by GitHub
commit fca8aea99c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -148,6 +148,10 @@ bool LimboHSM::dispatch(const String &p_event, const Variant &p_cargo) {
key = _get_transition_key(nullptr, p_event);
if (transitions.has(key)) {
to_state = transitions[key];
if (to_state == active_state) {
// Transitions to self are not allowed with ANYSTATE.
to_state = nullptr;
}
}
}
if (to_state != nullptr) {