From d6f7638b2cabe4004c2583486c36c36ee951d735 Mon Sep 17 00:00:00 2001 From: Zac Herd Date: Sat, 27 Jan 2018 12:09:56 +0000 Subject: [PATCH] v1.0.9 updated roll response --- commands.py | 2 +- common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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