aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorCerapter <cerap@protonmail.com>2018-08-13 08:30:29 +0200
committerCerapter <cerap@protonmail.com>2018-08-13 08:30:29 +0200
commit37c0a709488d6d8b3d8191f321098ea996d9cf70 (patch)
treee0adf91d06b87dcb1e844722fb1a82ba471dd6fc /server
parent00b5af9b60aaeeb26511f29a6f839210ee9c8234 (diff)
`/rolla_set`'s display fixed.
Diffstat (limited to 'server')
-rw-r--r--server/commands.py2
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: