From 91b599440a39ab8d12905ef8ac67eccc4cb82e3e Mon Sep 17 00:00:00 2001 From: JetRaidz Date: Wed, 25 Oct 2023 01:00:18 +1300 Subject: [PATCH] fix(strings): Update context strings in rank templates - Updated context strings for the default reward messages in ranks/ui/templates.py. --- src/modules/ranks/ui/templates.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/ranks/ui/templates.py b/src/modules/ranks/ui/templates.py index 99d836d2..beadd6de 100644 --- a/src/modules/ranks/ui/templates.py +++ b/src/modules/ranks/ui/templates.py @@ -16,21 +16,21 @@ Reward message defaults """ voice_reward_msg = _p( - 'ui:rank_editor|input:message|default|type:voice', + 'rank_autocreate|message_defaults|type:voice', "Congratulations {user_mention}!\n" "For working hard for **{requires}**, you have achieved the rank of " "**{role_name}** in **{guild_name}**! Keep up the good work." ) xp_reward_msg = _p( - 'ui:rank_editor|input:message|default|type:xp', + 'rank_autocreate|message_defaults|type:xp', "Congratulations {user_mention}!\n" "For earning **{requires}**, you have achieved the guild rank of " "**{role_name}** in **{guild_name}**!" ) msg_reward_msg = _p( - 'ui:rank_editor|input:message|default|type:msg', + 'rank_autocreate|message_defaults|type:msg', "Congratulations {user_mention}!\n" "For sending **{requires}**, you have achieved the guild rank of " "**{role_name}** in **{guild_name}**!"