diff --git a/cinderella/modules/feds.py b/cinderella/modules/feds.py
index a767c10b..b575de02 100644
--- a/cinderella/modules/feds.py
+++ b/cinderella/modules/feds.py
@@ -515,7 +515,7 @@ def fed_ban(bot: Bot, update: Update, args: List[str]):
fed_chats = sql.all_fed_chats(fed_id)
# Will send to current chat
- bot.send_message(chat.id, "New FederationBan" \
+ bot.send_message(chat.id, "FedBan reason updated" \
"\nFederation: {}" \
"\nFederation Admin: {}" \
"\nUser: {}" \
@@ -618,7 +618,7 @@ def fed_ban(bot: Bot, update: Update, args: List[str]):
fed_chats = sql.all_fed_chats(fed_id)
# Will send to current chat
- bot.send_message(chat.id, "FedBan reason updated" \
+ bot.send_message(chat.id, "New Fedban" \
"\nFederation: {}" \
"\nFederation Admin: {}" \
"\nUser: {}" \
@@ -626,7 +626,7 @@ def fed_ban(bot: Bot, update: Update, args: List[str]):
"\nReason: {}".format(fed_name, mention_html(user.id, user.first_name), user_target, fban_user_id, reason), parse_mode="HTML")
# Send message to owner if fednotif is enabled
if getfednotif:
- bot.send_message(info['owner'], "FedBan reason updated" \
+ bot.send_message(info['owner'], "New Fedban" \
"\nFederation: {}" \
"\nFederation Admin: {}" \
"\nUser: {}" \
@@ -636,7 +636,7 @@ def fed_ban(bot: Bot, update: Update, args: List[str]):
get_fedlog = sql.get_fed_log(fed_id)
if get_fedlog:
if int(get_fedlog) != int(chat.id):
- bot.send_message(get_fedlog, "FedBan reason updated" \
+ bot.send_message(get_fedlog, "New Fedban" \
"\nFederation: {}" \
"\nFederation Admin: {}" \
"\nUser: {}" \