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
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Template for new versions:
## Misc Improvements
- `hide-tutorials`: if enabled, also hide tutorial popups for adventure mode
- `hide-tutorials`: new ``reset`` command that will re-enable popups in the current game
- `gui/notify`: moody dwarf notification turns red when they can't find workshop or items

## Removed

Expand Down
4 changes: 2 additions & 2 deletions internal/notify/notifications.lua
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ NOTIFICATIONS_BY_IDX = {
if dfhack.buildings.findAtTile(unit.path.dest) then
message = 'moody dwarf is claiming a workshop'
else
message = 'moody dwarf can\'t find needed workshop!'
message = {{text='moody dwarf can\'t find needed workshop!', pen=COLOR_LIGHTRED}}
end
elseif job.flags.fetching or job.flags.bringing or
unit.path.goal == df.unit_path_goal.None
Expand All @@ -437,7 +437,7 @@ NOTIFICATIONS_BY_IDX = {
elseif job.flags.working then
message = 'moody dwarf is working'
else
message = 'moody dwarf can\'t find needed item!'
message = {{text='moody dwarf can\'t find needed item!', pen=COLOR_LIGHTRED}}
end
return true
end)
Expand Down