diff --git a/geoffrey/__init__.py b/geoffrey/__init__.py index 1f356cc..cd7ca49 100644 --- a/geoffrey/__init__.py +++ b/geoffrey/__init__.py @@ -1 +1 @@ -__version__ = '1.0.0' +__version__ = '1.0.1' diff --git a/geoffrey/cogs/Delete_Commands.py b/geoffrey/cogs/Delete_Commands.py index 932bda3..955204c 100644 --- a/geoffrey/cogs/Delete_Commands.py +++ b/geoffrey/cogs/Delete_Commands.py @@ -37,6 +37,7 @@ class Delete_Commands: """ Deletes an item listing from a shop inventory + The item name must be wrapped in quotes if it has a space in it ?delete_name [Item] [Shop Name] """ diff --git a/geoffrey/cogs/Search_Commands.py b/geoffrey/cogs/Search_Commands.py index d1aa3f7..75e2a78 100644 --- a/geoffrey/cogs/Search_Commands.py +++ b/geoffrey/cogs/Search_Commands.py @@ -44,7 +44,7 @@ class Search_Commands: result = self.bot.bot_commands.tunnel(player) await ctx.send( - '{}, **{}** owns the following tunnels: \n{}'.format(ctx.message.author.mention, player, result)) + '{}, **{}** owns the following tunnel(s): \n{}'.format(ctx.message.author.mention, player, result)) except LocationLookUpError: await ctx.send('{}, no tunnels for **{}** were found in the database.' .format(ctx.message.author.mention, player)) @@ -105,7 +105,7 @@ class Search_Commands: try: result = self.bot.bot_commands.selling(item_name) await ctx.send( - '{}, the following shops sell **{}**: \n{}'.format(ctx.message.author.mention, item_name, result)) + '{}, the following shop(s) sell **{}**: \n{}'.format(ctx.message.author.mention, item_name, result)) except ItemNotFound: await ctx.send('{}, no shop sells **{}**.'.format(ctx.message.author.mention, item_name)) @@ -137,8 +137,8 @@ class Search_Commands: """ try: loc_str = self.bot.bot_commands.me(discord_uuid=ctx.message.author.id) - await ctx.send('{}, here are your locations in the database: \n {}'.format(ctx.message.author.mention, - loc_str)) + await ctx.send('{}, here are your location(s) in the database: \n {}'.format(ctx.message.author.mention, + loc_str)) except PlayerNotFound: await ctx.send('{}, you don\'t have any locations in the database.'.format(ctx.message.author.mention))