Fix `BTSetAgentProperty` name generation

(cherry picked from commit da2bc5e3bb)
This commit is contained in:
Serhii Snitsaruk 2024-09-14 19:56:31 +02:00
parent fd1ac1cbb8
commit 5ac6cda415
No known key found for this signature in database
GPG Key ID: A965EF8799FFEC2D
1 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,9 @@ String BTSetAgentProperty::_generate_name() {
return "SetAgentProperty ???";
}
return vformat("Set agent.%s = %s", property,
return vformat("Set agent.%s %s= %s",
property,
LimboUtility::get_singleton()->get_operation_string(operation),
value.is_valid() ? Variant(value) : Variant("???"));
}