diff --git a/internal/advtools/party.lua b/internal/advtools/party.lua index 241edc478..4ef9f7cbf 100644 --- a/internal/advtools/party.lua +++ b/internal/advtools/party.lua @@ -1,7 +1,7 @@ --@ module=true -local dialogs = require 'gui.dialogs' -local utils = require 'utils' +local dialogs = require('gui.dialogs') +local utils = require('utils') local makeown = reqscript('makeown') @@ -40,7 +40,7 @@ local function showExtraPartyPrompt() table.insert(choices, {text=name, nemesis=nemesis, search_key=dfhack.toSearchNormalized(name)}) ::continue:: end - dialogs.showListPrompt('party', "Select someone to add to your \"Core Party\" (able to assume control, able to unretire):", COLOR_WHITE, + dialogs.showListPrompt('party', 'Select someone to add to your "Core Party" (able to assume control, able to unretire):', COLOR_WHITE, choices, function(id, choice) addToCoreParty(choice.nemesis) end, nil, nil, true)