Skip to content

Commit

Permalink
Fix a weird padding issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rspeicher committed Sep 2, 2009
1 parent 6222900 commit b97fc2d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions JuggyCompare.lua
Expand Up @@ -204,19 +204,19 @@ function mod:DoCompare()

if row.telltype == "BES" or row.telltype == "BIS" then
str = str .. pad(row.bislf, -8)
str = str .. " BiS"
str = str .. pad("BiS", -8)
elseif row.telltype == "BISROT" then
str = str .. pad(row.bislf, -8)
str = str .. " BiS ROT"
str = str .. pad("BiSROT", -8)
elseif row.telltype == "SIT" then
str = str .. pad(row.slf, -8)
str = str .. " SIT"
str = str .. pad("SIT", -8)
else
str = str .. pad(row.lf, -8)

-- Show ROT/FERAL/etc.?
if row.telltype ~= nil then
str = str .. " " .. row.telltype
str = str .. pad(row.telltype, -8)
end
end
else
Expand Down

0 comments on commit b97fc2d

Please sign in to comment.