Skip to content

Commit

Permalink
re-remove location column, added back in error
Browse files Browse the repository at this point in the history
  • Loading branch information
mrhoribu authored Jan 19, 2025
1 parent fc16f4b commit 70d787a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/route2.lic
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ table_rows = []
if XMLData.game =~ /^GS/
table_rows.push(["#{0.to_s.rjust(4)}:", '', '', '', src.id, src.title[0], src.location])
else
table_rows.push(["#{0.to_s.rjust(4)}:", '', '', '', src.id, src.title[0], src.location])
table_rows.push(["#{0.to_s.rjust(4)}:", '', '', '', src.id, src.title[0]])
end
path.each do |id|
id = id.to_s
Expand Down Expand Up @@ -172,7 +172,7 @@ path.each do |id|
if XMLData.game =~ /^GS/
table_rows.push(["#{sstep}:", sttime, stime, wayto, id, title, location])
else
table_rows.push(["#{sstep}:", sttime, stime, wayto, id, title, location])
table_rows.push(["#{sstep}:", sttime, stime, wayto, id, title])
end
end
table = Terminal::Table.new(
Expand Down

0 comments on commit 70d787a

Please sign in to comment.