Removes nb. sprites from dynamic spriter credits list

This commit is contained in:
infinitefusion
2023-05-01 21:34:15 -04:00
parent 8932d2fed4
commit afe1d54015
3 changed files with 9 additions and 3 deletions

Binary file not shown.

View File

@@ -124,11 +124,17 @@ end
def format_names_for_game_credits() def format_names_for_game_credits()
spriters_map = get_top_artists(50) spriters_map = get_top_artists(100)
formatted = "" formatted = ""
i =1
for spriter in spriters_map.keys for spriter in spriters_map.keys
line = spriter + "<s>" + spriters_map[spriter].to_s + " sprites\n" formatted << spriter
formatted << line if i%2 == 0
formatted << "\n"
else
formatted << "<s>"
end
i+=1
end end
return formatted return formatted
end end

Binary file not shown.