Remove hedge mention

This commit is contained in:
Ave Ozkal 2018-12-24 11:41:28 +03:00
parent 82390d8dfb
commit b6f8af6d53
No known key found for this signature in database
GPG key ID: 09356ABAA42C842B

View file

@ -45,8 +45,7 @@ class ModCog:
"""Mutes a user, staff only.""" """Mutes a user, staff only."""
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't mute this user as " return await ctx.send("I can't mute this user as "
"they're a member of staff.") "they're a member of staff.")
@ -111,8 +110,7 @@ class ModCog:
"""Kicks a user, staff only.""" """Kicks a user, staff only."""
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't kick this user as " return await ctx.send("I can't kick this user as "
"they're a member of staff.") "they're a member of staff.")
@ -154,8 +152,7 @@ class ModCog:
"""Bans a user, staff only.""" """Bans a user, staff only."""
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't ban this user as " return await ctx.send("I can't ban this user as "
"they're a member of staff.") "they're a member of staff.")
@ -195,8 +192,7 @@ class ModCog:
target = ctx.guild.get_member(target) target = ctx.guild.get_member(target)
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't ban this user as " return await ctx.send("I can't ban this user as "
"they're a member of staff.") "they're a member of staff.")
@ -227,8 +223,7 @@ class ModCog:
"""Bans a user, staff only.""" """Bans a user, staff only."""
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't ban this user as " return await ctx.send("I can't ban this user as "
"they're a member of staff.") "they're a member of staff.")
@ -379,8 +374,7 @@ class ModCog:
"""Warn a user. Staff only.""" """Warn a user. Staff only."""
# Hedge-proofing the code # Hedge-proofing the code
if target == ctx.author: if target == ctx.author:
return await ctx.send("You can't do mod actions on yourself" return await ctx.send("You can't do mod actions on yourself.")
", hedge.")
elif self.check_if_target_is_staff(target): elif self.check_if_target_is_staff(target):
return await ctx.send("I can't warn this user as " return await ctx.send("I can't warn this user as "
"they're a member of staff.") "they're a member of staff.")