Merge pull request #213 from limbonaut/fix-setagentprop-name
Fix `BTSetAgentProperty` name generation
This commit is contained in:
commit
d72c2e0648
|
@ -46,7 +46,9 @@ String BTSetAgentProperty::_generate_name() {
|
||||||
return "SetAgentProperty ???";
|
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("???"));
|
value.is_valid() ? Variant(value) : Variant("???"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue