diff --git a/gameloop.py b/gameloop.py index 1b4dc48..cdb4d42 100644 --- a/gameloop.py +++ b/gameloop.py @@ -623,7 +623,7 @@ def game(send, notice, voice, devoice, get_event): # Move the cards outside of the current hand size into # the hand - overflow = player.hand[hand_size:] + overflow = [i for i in player.hand[hand_size:] if i is not None] player.hand = player.hand[:hand_size] for index in range(len(player.hand)): if len(overflow) == 0: