diff --git a/modules/Dice.py b/modules/Dice.py index 2413a4e..f08e0cc 100644 --- a/modules/Dice.py +++ b/modules/Dice.py @@ -64,7 +64,7 @@ class Dice(Module): else: modifier = int(matches.group(6)) - result = nick + ': ' + roll + ': ' + result = roll + ': ' if comment is not None: result += comment + ': ' @@ -95,7 +95,7 @@ class Dice(Module): if roll is not rolls[-1]: reply += "; " if reply is not "": - return self.reply(connection, replypath, reply) + return self.reply(connection, replypath, nick + ': ' + reply) else: print(what.split(' ')[0])