We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff1b95a commit d146c3cCopy full SHA for d146c3c
1 file changed
gui/rename.lua
@@ -983,6 +983,9 @@ local function get_target(opts)
983
if opts.histfig_id then
984
target = get_hf_target(df.historical_figure.find(opts.histfig_id))
985
if not target then qerror('Historical figure not found') end
986
+ elseif opts.entity_id then
987
+ target = get_entity_target(df.historical_entity.find(opts.entity_id))
988
+ if not target then qerror('Entity not found') end
989
elseif opts.item_id then
990
target = get_artifact_target(df.item.find(opts.item_id))
991
if not target then qerror('Artifact not found') end
0 commit comments