From 60846c81d149ad827f8899aa96eed06bb7fca783 Mon Sep 17 00:00:00 2001 From: Joey Hines Date: Tue, 22 May 2018 18:47:25 -0500 Subject: [PATCH] Updated help to include new nether tunnel support --- MCInfoBot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MCInfoBot.py b/MCInfoBot.py index aeb28e5..b342cc2 100644 --- a/MCInfoBot.py +++ b/MCInfoBot.py @@ -101,7 +101,7 @@ async def test(): @bot.command(pass_context=True) async def addbase(ctx, * args): '''Add your base to the database. - ?addbase [Base Name] [X Coordinate] [Y Coordinate] [Z Coordinate] + ?addbase [Base Name] [X Coordinate] [Y Coordinate] [Z Coordinate] [Tunnel Color] [Tunnel Position] ''' if (len(args) == 4) : try: @@ -126,7 +126,7 @@ async def addbase(ctx, * args): await bot.say('{}, your base named {} located at {} has been added' ' to the database.'.format(ctx.message.author.mention, base.name, base.posToStr())) except ValueError: - await bot.say('Invalid syntax, try again (?addbase [name] [x coord] [z coord])') + await bot.say('Invalid syntax, try again (?addbase [name] [x coord] [z coord] [Tunnel Color] [Tunnel Position])') else : await bot.say('Allows you to add your base location to the database. '