Removed dimension flag from find_around

doc_update
Joey Hines 2018-10-14 10:01:19 -05:00 committed by GitHub
parent e69c01f7b0
commit 219c993989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 14 deletions

View File

@ -57,26 +57,14 @@ class Search_Commands:
The radius defaults to 200 blocks if no value is given The radius defaults to 200 blocks if no value is given
Default dimension is the overworld Default dimension is the overworld
?find_around [X Coordinate] [Z Coordinate] [Radius] [Optional Flags] ?find_around [X Coordinate] [Z Coordinate] [Radius]
Optional Flags:
-d [dimension]
""" """
radius = 200 radius = 200
dimension = 'Overworld' dimension = 'Overworld'
try: try:
if len(args) > 0: if len(args) > 0:
if args[0] == '-d': radius = int(args[0])
dimension = args[1]
if len(args) > 1:
radius = int(args[2])
else:
radius = int(args[0])
if len(args) > 1:
if args[1] == '-d':
dimension = args[2]
base_string = self.bot.bot_commands.find_around(x_pos, z_pos, radius, dimension) base_string = self.bot.bot_commands.find_around(x_pos, z_pos, radius, dimension)