Skip to content

Commit

Permalink
Fix unhandled PROPERTY_HINT_NO_NODEPATH
Browse files Browse the repository at this point in the history
Due to upstream change:

	godotengine/godot@6f7525c
  • Loading branch information
Rubonnek committed Dec 18, 2024
1 parent 590af23 commit 60f92a6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions util/limbo_utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,9 @@ String LimboUtility::get_property_hint_text(PropertyHint p_hint) const {
case PROPERTY_HINT_ONESHOT: {
return "ONESHOT";
}
case PROPERTY_HINT_NO_NODEPATH: {
return "NO_NODEPATH";
}
case PROPERTY_HINT_LOCALE_ID: {
return "LOCALE_ID";
}
Expand Down

0 comments on commit 60f92a6

Please sign in to comment.