diff --git a/hsm/limbo_state.cpp b/hsm/limbo_state.cpp index 62e451d..77554bb 100644 --- a/hsm/limbo_state.cpp +++ b/hsm/limbo_state.cpp @@ -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(get_parent()); + state = state->get_parent(); } - return const_cast(state); + return const_cast(Object::cast_to(state)); } LimboState *LimboState::named(const String &p_name) {