This commit is contained in:
hsolerkalinovski 2024-02-21 01:16:07 -03:00 committed by GitHub
commit d756a43d68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -117,6 +117,9 @@ bool LimboState::dispatch(const String &p_event, const Variant &p_cargo) {
return ret;
}
}
else if (this->get_parent()->is_class("LimboState")) {
return static_cast<LimboState*>(this->get_parent())->dispatch(p_event, p_cargo);
}
return false;
}