From 696eff00116a18b692a392e53fa0bf7c1f31df9f Mon Sep 17 00:00:00 2001 From: Paul Lesur Date: Thu, 7 Jan 2021 14:52:41 +0100 Subject: [PATCH] Bowling -> Bowl --- telebot.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/telebot.go b/telebot.go index b04e943..b05459f 100644 --- a/telebot.go +++ b/telebot.go @@ -216,10 +216,10 @@ const ( type DiceType string var ( - Cube = &Dice{Type: "🎲"} - Dart = &Dice{Type: "🎯"} - Ball = &Dice{Type: "🏀"} - Goal = &Dice{Type: "⚽"} - Slot = &Dice{Type: "🎰"} - Bowling = &Dice{Type: "🎳"} + Cube = &Dice{Type: "🎲"} + Dart = &Dice{Type: "🎯"} + Ball = &Dice{Type: "🏀"} + Goal = &Dice{Type: "⚽"} + Slot = &Dice{Type: "🎰"} + Bowl = &Dice{Type: "🎳"} )