diff --git a/changelog.txt b/changelog.txt index 4a64f7ee03..17608d4b21 100644 --- a/changelog.txt +++ b/changelog.txt @@ -54,6 +54,7 @@ Template for new versions: - `confirm`: fix confirmation prompt for overwriting a hotkey zoom location - `quickfort`: allow farm plots to be built on muddy stone - `suspend`: remove broken ``--onlyblocking`` option; restore functionality to suspend all construction jobs +- `gui/create-item`: allow creation of adamantine thread, wool, and yarn ## Misc Improvements - `gui/launcher`: "space space to toggle pause" behavior is skipped if the game was paused when `gui/launcher` came up to prevent accidental unpausing diff --git a/gui/create-item.lua b/gui/create-item.lua index 264f84a179..ee224fca57 100644 --- a/gui/create-item.lua +++ b/gui/create-item.lua @@ -155,7 +155,7 @@ local function getMatFilter(itemtype, opts) return (mat.flags.WOOD) end, THREAD = function(mat, parent, typ, idx) - return (mat.flags.THREAD_PLANT) + return (mat.flags.THREAD_PLANT or mat.flags.SILK or mat.flags.YARN or mat.flags.STOCKPILE_THREAD_METAL) end, LEATHER = function(mat, parent, typ, idx) return (mat.flags.LEATHER)