Skip to content

Commit

Permalink
lua: remove extra space between field name and colon in edict info page
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Nov 30, 2023
1 parent ef2aca0 commit bcdc918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Misc/qs_pak/scripts/menus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ function menu.edictinfopage(edict)
end

-- Output formatted names and values of edict fields
local fieldformat = '%-' .. maxlen .. 's : %s'
local fieldformat = '%-' .. maxlen .. 's: %s'

for _, field in ipairs(fields) do
local line = fieldformat:format(field.name, field.value)
Expand Down

0 comments on commit bcdc918

Please sign in to comment.