From 37c0a709488d6d8b3d8191f321098ea996d9cf70 Mon Sep 17 00:00:00 2001 From: Cerapter Date: Mon, 13 Aug 2018 08:30:29 +0200 Subject: [PATCH] `/rolla_set`'s display fixed. --- server/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/commands.py b/server/commands.py index 853a37d..eb42470 100644 --- a/server/commands.py +++ b/server/commands.py @@ -825,7 +825,7 @@ def rolla_reload(area): def ooc_cmd_rolla_set(client, arg): if not hasattr(client.area, 'ability_dice'): rolla_reload(client.area) - available_sets = client.area.ability_dice.keys() + available_sets = ', '.join(client.area.ability_dice.keys()) if len(arg) == 0: raise ArgumentError('You must specify the ability set name.\nAvailable sets: {}'.format(available_sets)) if arg in client.area.ability_dice: