Merge pull request #127 from jmaliksi/jm_fix_imports

Fix onomancer import
This commit is contained in:
Sakimori 2021-01-05 14:29:36 -05:00 committed by GitHub
commit ccd7702db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1004,7 +1004,7 @@ def team_from_collection(newteam_json):
raise CommandError("We've given you 100 characters for the slogan. Discord puts limits on us and thus, we put limits on you. C'est la vie.") raise CommandError("We've given you 100 characters for the slogan. Discord puts limits on us and thus, we put limits on you. C'est la vie.")
if len(newteam_json["lineup"]) > 20: if len(newteam_json["lineup"]) > 20:
raise CommandError("20 players in the lineup, maximum. We're being really generous here.") raise CommandError("20 players in the lineup, maximum. We're being really generous here.")
if not len(newteam_json["rotation"]) > 8: if len(newteam_json["rotation"]) > 8:
raise CommandError("8 pitchers on the rotation, max. That's a *lot* of pitchers.") raise CommandError("8 pitchers on the rotation, max. That's a *lot* of pitchers.")
for player in newteam_json["lineup"] + newteam_json["rotation"]: for player in newteam_json["lineup"] + newteam_json["rotation"]:
if len(player["name"]) > 70: if len(player["name"]) > 70:
@ -1016,7 +1016,8 @@ def team_from_collection(newteam_json):
newteam.slogan = newteam_json["slogan"] newteam.slogan = newteam_json["slogan"]
for player in newteam_json["lineup"]: for player in newteam_json["lineup"]:
newteam.add_lineup(games.player(json.dumps(player))) newteam.add_lineup(games.player(json.dumps(player)))
newteam.set_pitcher(games.player(json.dumps(newteam_json["rotation"][0]))) for player in newteam_json["rotation"]:
newteam.add_pitcher(games.player(json.dumps(player)))
return newteam return newteam
@ -1166,4 +1167,4 @@ def get_team_fuzzy_search(team_name):
team = teams[0] team = teams[0]
return team return team
client.run(config()["token"]) client.run(config()["token"])