Skip to content
Closed
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 @@ -40,6 +40,7 @@ Template for new versions:
## Misc Improvements
- `caravan`: the ``Bring goods to depot``, ``Trade``, and ``Assign items for display`` overlays now allow searching for items with non-ASCII characters in their description
- `caravan`: the ``Trade`` overlay will use the trader's appraisal skill instead of the broker's to round/obfuscate the value of items
- `gui/create-item`: add 0-5 hotkeys to the item quality selection prompt

## Removed
- `confirm`: removed the ``squad-disband`` and ``hotkey-reset`` confirmations; the game asks for both itself now ("Really disband?" and "Really overwrite")
Expand Down
12 changes: 6 additions & 6 deletions gui/create-item.lua
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ local function getMatFilter(itemtype, opts)
end

local function qualityTable()
return { { 'None' },
{ '-Well-crafted-' },
{ '+Finely-crafted+' },
{ '*Superior*' },
{ string.char(240) .. 'Exceptional' .. string.char(240) },
{ string.char(15) .. 'Masterwork' .. string.char(15) },
return { { 'None', key='STRING_A048' },
{ '-Well-crafted-', key='STRING_A049' },
{ '+Finely-crafted+', key='STRING_A050' },
{ '*Superior*', key='STRING_A051' },
{ string.char(240) .. 'Exceptional' .. string.char(240), key='STRING_A052' },
{ string.char(15) .. 'Masterwork' .. string.char(15), key='STRING_A053' },
}
end

Expand Down
Loading