Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ Template for new versions:
# Future

## New Tools

- `autocheese`: automatically make cheese using barrels that have accumulated sufficient milk

## New Features

## Fixes
- `advtools`: fix dfhack-added conversation options not appearing in the ask whereabouts conversation tree

## Misc Improvements
- `assign-preferences`: new ``--show`` option to display the preferences of the selected unit
Expand Down
2 changes: 1 addition & 1 deletion internal/advtools/convo.lua
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ local function addWhereaboutsChoice(race, name, target_id, heard_of)
if heard_of then
title = title .. " (Heard of)"
end
local choice = new_choice(df.talk_choice_type.AskWhereabouts, title, dfhack.translation.translateName(name):split())
local choice = new_choice(df.talk_choice_type.AskForDirectionsToHF, title, dfhack.translation.translateName(name):split())
-- insert before the last choice, which is usually "back"
adventure.conversation.conv_choice_info:insert(#adventure.conversation.conv_choice_info-1, choice)
choice.choice.invocation_target_hfid = target_id
Expand Down
Loading