diff --git a/commands.py b/commands.py index bae7c6a..7d180a8 100755 --- a/commands.py +++ b/commands.py @@ -148,7 +148,7 @@ def cmd_roll(client, msg): for i in range(nums[0]): rollsum += random.randint(1, nums[1]) - response = "Using `{}d{}` you rolled: `{}`".format(nums[0], nums[1], rollsum) + response = "Using `{}d{}`, {} rolled: `{}`".format(nums[0], nums[1], msg.author.display_name, rollsum) else: response = "Expected format: `d`" diff --git a/common.py b/common.py index cac1acf..2bf967f 100755 --- a/common.py +++ b/common.py @@ -13,7 +13,7 @@ import json # bot version -version = "v1.0.8" +version = "v1.0.9" # TODO: generate this on the fly and make it look acceptable