We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6162a1b commit a72a999Copy full SHA for a72a999
instruments.lua
@@ -61,13 +61,13 @@ local function print_list()
61
62
local building_tag = instrument.flags.PLACED_AS_BUILDING and " (building, " or " (handheld, "
63
local reaction = getAssemblyReaction(instrument.id)
64
- dfhack.print(instrument.name .. building_tag)
+ dfhack.print(dfhack.df2console(instrument.name .. building_tag))
65
if #instrument.pieces == 0 then
66
- print(describeReaction(reaction) .. ")")
+ print(dfhack.df2console(describeReaction(reaction) .. ")"))
67
else
68
- print(df.job_skill[reaction.skill] .. "/assemble)")
+ print(dfhack.df2console(df.job_skill[reaction.skill] .. "/assemble)"))
69
for _, str in pairs(instruments[instrument.name]) do
70
- print(" " .. str)
+ print(dfhack.df2console(" " .. str))
71
end
72
73
print()
0 commit comments