Skip to content

Commit 5ac6cda

Browse files
committed
Fix BTSetAgentProperty name generation
(cherry picked from commit da2bc5e)
1 parent fd1ac1c commit 5ac6cda

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bt/tasks/scene/bt_set_agent_property.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ String BTSetAgentProperty::_generate_name() {
4646
return "SetAgentProperty ???";
4747
}
4848

49-
return vformat("Set agent.%s = %s", property,
49+
return vformat("Set agent.%s %s= %s",
50+
property,
51+
LimboUtility::get_singleton()->get_operation_string(operation),
5052
value.is_valid() ? Variant(value) : Variant("???"));
5153
}
5254

0 commit comments

Comments
 (0)