[V3] guild->server (#1529)

Mostly string renames
customcom now recognized {guild} and {server}
This commit is contained in:
bobloy
2018-04-16 15:32:51 -04:00
committed by palmtree5
parent 1bc650b0f9
commit 705d9b8238
7 changed files with 14 additions and 13 deletions

View File

@@ -100,7 +100,7 @@ class ModLog:
try:
case = await modlog.get_case(number, ctx.guild, self.bot)
except RuntimeError:
await ctx.send(_("That case does not exist for that guild"))
await ctx.send(_("That case does not exist for that server"))
return
else:
await ctx.send(embed=await case.get_case_msg_content())
@@ -110,7 +110,7 @@ class ModLog:
async def reason(self, ctx: RedContext, case: int, *, reason: str = ""):
"""Lets you specify a reason for mod-log's cases
Please note that you can only edit cases you are
the owner of unless you are a mod/admin or the guild owner"""
the owner of unless you are a mod/admin or the server owner"""
author = ctx.author
guild = ctx.guild
if not reason: