Update puts statement

This commit is contained in:
Justin Edmund 2025-01-15 19:12:44 -08:00
parent 29c52469a3
commit df1bc9427a

View file

@ -105,11 +105,7 @@ module PostDeployment
count = items.size
puts "\n#{type.capitalize}: #{count} #{label.downcase} #{count == 1 ? 'record' : 'records'}"
items.each do |item|
if @test_mode
puts " - #{item[:name_en]} (ID: #{item[:granblue_id]})"
else
puts " - #{item.name_en} (ID: #{item.granblue_id})"
end
puts " - #{item[:name_en]} (ID: #{item[:granblue_id]})"
end
end
end