mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 16:23:48 +00:00
replyWithDice
This commit is contained in:
parent
41b4d29917
commit
841ae73f7c
@ -5,10 +5,12 @@
|
|||||||
* `Common`:
|
* `Common`:
|
||||||
* `Version`:
|
* `Version`:
|
||||||
* `MicroUtils`: `0.4.24` -> `0.4.25`
|
* `MicroUtils`: `0.4.24` -> `0.4.25`
|
||||||
|
* `Extensions API`:
|
||||||
|
* New extension `TelegramBot#replyWithDice`
|
||||||
* `Extensions Utils`:
|
* `Extensions Utils`:
|
||||||
* `SlotMachineReelImages` has been renamed to `SlotMachineReelImage`
|
* `SlotMachineReelImages` has been renamed to `SlotMachineReelImage`
|
||||||
* `SlotMachineReelImage` got two built-in parameters: `text` and `number`
|
* `SlotMachineReelImage` got two built-in parameters: `text` and `number`
|
||||||
* New extension `String.asSlotMachineReelImage`
|
* New extension `String#asSlotMachineReelImage`
|
||||||
|
|
||||||
## 0.32.5
|
## 0.32.5
|
||||||
|
|
||||||
|
@ -29,10 +29,18 @@ suspend fun TelegramBot.sendDice(
|
|||||||
replyMarkup: KeyboardMarkup? = null
|
replyMarkup: KeyboardMarkup? = null
|
||||||
) = sendDice(chat.id, animationType, disableNotification, replyToMessageId, allowSendingWithoutReply, replyMarkup)
|
) = sendDice(chat.id, animationType, disableNotification, replyToMessageId, allowSendingWithoutReply, replyMarkup)
|
||||||
|
|
||||||
suspend inline fun TelegramBot.reply(
|
suspend inline fun TelegramBot.replyWithDice(
|
||||||
to: Message,
|
to: Message,
|
||||||
animationType: DiceAnimationType? = null,
|
animationType: DiceAnimationType? = null,
|
||||||
disableNotification: Boolean = false,
|
disableNotification: Boolean = false,
|
||||||
allowSendingWithoutReply: Boolean? = null,
|
allowSendingWithoutReply: Boolean? = null,
|
||||||
replyMarkup: KeyboardMarkup? = null
|
replyMarkup: KeyboardMarkup? = null
|
||||||
) = sendDice(to.chat, animationType, disableNotification, to.messageId, allowSendingWithoutReply, replyMarkup)
|
) = sendDice(to.chat, animationType, disableNotification, to.messageId, allowSendingWithoutReply, replyMarkup)
|
||||||
|
|
||||||
|
suspend inline fun TelegramBot.reply(
|
||||||
|
to: Message,
|
||||||
|
animationType: DiceAnimationType? = null,
|
||||||
|
disableNotification: Boolean = false,
|
||||||
|
allowSendingWithoutReply: Boolean? = null,
|
||||||
|
replyMarkup: KeyboardMarkup? = null
|
||||||
|
) = replyWithDice(to, animationType, disableNotification, allowSendingWithoutReply, replyMarkup)
|
||||||
|
Loading…
Reference in New Issue
Block a user