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
5 changes: 2 additions & 3 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ Template for new versions:
## New Features

## Fixes
- `gui/siegemanager`: consistently set the initial filter to "All"

- `caravan`: fix ethics warning for wooden weapons

- `gui/control-panel`: fixed inconsistent space in command help ("tweak" -> "tweak ", like with other commands)
- `gui/siegemanager`: consistently set the initial filter to "All"
- `immortal-cravings`: also take care of immortal units with alcohol dependence

## Misc Improvements
Expand Down
2 changes: 1 addition & 1 deletion gui/control-panel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ function CommandTab:init_footer(panel)
end

local function launch_help(data)
dfhack.run_command('gui/launcher', data.help_command or data.command .. ' ')
dfhack.run_command('gui/launcher', (data.help_command or data.command) .. ' ')
end

function CommandTab:show_help()
Expand Down
Loading