From 60196929fd01658649946b11d1e1001352dddd23 Mon Sep 17 00:00:00 2001 From: joe Date: Tue, 5 Jan 2021 09:15:54 -0800 Subject: [PATCH] erroneous not --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index cecbdf4..c92e020 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1003,7 +1003,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.") if len(newteam_json["lineup"]) > 20: 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.") for player in newteam_json["lineup"] + newteam_json["rotation"]: if len(player["name"]) > 70: