Removed strings from some fun commands

This commit is contained in:
lucmsilva651 2024-07-26 00:45:54 -03:00
parent 7245441c5f
commit 5da48e0891
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
3 changed files with 7 additions and 16 deletions

View file

@ -42,25 +42,20 @@ function gayFunction(ctx) {
}
async function rollDice(ctx) {
const Strings = getStrings(ctx.from.language_code);
await ctx.reply(
Strings.rollingDice, {
parse_mode: 'Markdown',
ctx.telegram.sendDice(
ctx.chat.id, {
reply_to_message_id: ctx.message.message_id
}
);
ctx.telegram.sendDice(ctx.chat.id);
}
async function spinSlot(ctx) {
const Strings = getStrings(ctx.from.language_code);
await ctx.reply(
Strings.spinningSlot, {
parse_mode: 'Markdown',
ctx.telegram.sendDice(
ctx.chat.id, {
emoji: '🎰',
reply_to_message_id: ctx.message.message_id
}
);
ctx.telegram.sendDice(ctx.chat.id, { emoji: '🎰' });
}
module.exports = (bot) => {