Fix `LimboState::get_root` freezes the process

This commit is contained in:
Serhii Snitsaruk 2024-04-21 16:08:37 +02:00
parent 03de485ebb
commit 4207fbf8f3
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 3 additions and 3 deletions

View File

@ -29,11 +29,11 @@ void LimboState::_update_blackboard_plan() {
}
LimboState *LimboState::get_root() const {
const LimboState *state = this;
const Node *state = this;
while (state->get_parent() && IS_CLASS(state->get_parent(), LimboState)) {
state = Object::cast_to<LimboState>(get_parent());
state = state->get_parent();
}
return const_cast<LimboState *>(state);
return const_cast<LimboState *>(Object::cast_to<LimboState>(state));
}
LimboState *LimboState::named(const String &p_name) {