94fe7fb5 by Barry

Bug fix for gameslist to handle default of 20.

1 parent 8a0fe261
......@@ -345,7 +345,7 @@ Stuff:
else:
parts = message.content.split(' ')
limit = 20
if parts[1].isdigit():
if len(parts) > 1 and parts[1].isdigit():
limit = int(parts[1])
game_list = []
......