diff --git a/bot.py b/bot.py index bdac8ee..85e9364 100644 --- a/bot.py +++ b/bot.py @@ -295,7 +295,7 @@ def edit_quest(bot, update, player, qid, target, type): if target == "name": x.name = message - text = "Updated Name" + text = "☑️ Updated Name" elif target == "imp": message = message.lower() if message == "low" or message == "🔹 low": @@ -307,7 +307,7 @@ def edit_quest(bot, update, player, qid, target, type): else: bot.send_message(chat_id=chat_id, text="Invalid Option") return - text = "Updated Priority" + text = "☑️ Updated Priority" elif target == "diff": message = message.lower() if message == "low" or message == "📙 low": @@ -319,7 +319,7 @@ def edit_quest(bot, update, player, qid, target, type): else: bot.send_message(chat_id=chat_id, text="Invalid Option") return - text = "Updated Difficulty" + text = "☑️ Updated Difficulty" x.update_db() if type == "quest":