diff --git a/src/tomservobot/chance.py b/src/tomservobot/chance.py index 3dc9c26..79b7ee6 100644 --- a/src/tomservobot/chance.py +++ b/src/tomservobot/chance.py @@ -127,7 +127,7 @@ class ChanceModule(Module): # Tom gets the dice. await ctx.client.send_message( ctx.room, - f"{choice(_DICE_LOCATIONS)}", + f"{choice(_DICE_LOCATIONS)}", message_type="m.emote", content_type="html.raw", ) @@ -169,10 +169,10 @@ class ChanceModule(Module): await ctx.client.send_message( ctx.room, ( - f"rolls {dice_parts[0]}d{dice_parts[1]} " + f"rolls {dice_parts[0]}d{dice_parts[1]} " f"with a count of {total}. He then " f"{action} {modifier} for a final count " - f"of {new_total}." + f"of {new_total}." ), reply_to=ctx.message, message_type="m.emote", @@ -183,8 +183,8 @@ class ChanceModule(Module): await ctx.client.send_message( ctx.room, ( - f"rolls {dice_parts[0]}d{dice_parts[1]} " - f"and the final count is {total}." + f"rolls {dice_parts[0]}d{dice_parts[1]} " + f"and the final count is {total}." ), reply_to=ctx.message, message_type="m.emote",