Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Sep 3, 2024
1 parent 117b29c commit 97221a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/advtools/party.lua
Original file line number Diff line number Diff line change
@@ -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')

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 97221a1

Please sign in to comment.