diff --git a/etuutt_bot/commands/role.py b/etuutt_bot/commands/role.py index bc9df59..1347d7c 100644 --- a/etuutt_bot/commands/role.py +++ b/etuutt_bot/commands/role.py @@ -37,7 +37,7 @@ async def get_roles_with_framed_number_of_members( """ await interaction.response.defer(thinking=True) if nb_min > nb_max: - await interaction.followup.send("Erreur : nb_min doit être inférieur à nb_max") + await interaction.followup.send("Erreur : nb_min doit être inférieur ou égal à nb_max") return roles = [r for r in interaction.guild.roles if nb_min <= len(r.members) <= nb_max] if len(roles) == 0: