diff options
| author | Cerapter <cerap@protonmail.com> | 2018-08-13 08:30:29 +0200 |
|---|---|---|
| committer | Cerapter <cerap@protonmail.com> | 2018-08-13 08:30:29 +0200 |
| commit | 37c0a709488d6d8b3d8191f321098ea996d9cf70 (patch) | |
| tree | e0adf91d06b87dcb1e844722fb1a82ba471dd6fc /server | |
| parent | 00b5af9b60aaeeb26511f29a6f839210ee9c8234 (diff) | |
`/rolla_set`'s display fixed.
Diffstat (limited to 'server')
| -rw-r--r-- | server/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/commands.py b/server/commands.py index 853a37d9..eb42470c 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: |
