From a37b63907b984a15640f1eec5cc3090ad76de108 Mon Sep 17 00:00:00 2001 From: uburuntu Date: Wed, 29 Jul 2020 19:25:04 +0300 Subject: [PATCH] fix: add missed emoji argument to reply_dice --- aiogram/types/message.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aiogram/types/message.py b/aiogram/types/message.py index fedd656e..3123590d 100644 --- a/aiogram/types/message.py +++ b/aiogram/types/message.py @@ -1836,6 +1836,7 @@ class Message(base.TelegramObject): return await self.bot.send_dice( chat_id=self.chat.id, disable_notification=disable_notification, + emoji=emoji, reply_to_message_id=self.message_id if reply else None, reply_markup=reply_markup, )