locale: tweak and add "No factions found."

This commit is contained in:
Luke aka SwissalpS
2024-09-15 00:34:13 +02:00
parent 116bc756e1
commit bf9905e238
3 changed files with 3 additions and 3 deletions

View File

@@ -268,7 +268,7 @@ local function handle_command(name, param)
if faction_name == nil then
local player_factions = factions.get_player_factions(name)
if not player_factions then
return true, S("no faction found")
return true, S("No factions found.")
elseif #player_factions == 1 then
faction_name = player_factions[1]
else