Skip to content

Commit

Permalink
separating layouts by module name as well
Browse files Browse the repository at this point in the history
  • Loading branch information
tanjeffreyz committed May 27, 2022
1 parent 31aaa2d commit 9b2acd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routine/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __iter__(self):
class Layout:
"""Uses a quadtree to represent possible player positions in a map layout."""

LAYOUTS_DIR = os.path.join(config.RESOURCES_DIR, 'layouts')
LAYOUTS_DIR = os.path.join(config.RESOURCES_DIR, 'layouts', config.bot.module_name)
TOLERANCE = settings.move_tolerance / 2

def __init__(self, name):
Expand Down

0 comments on commit 9b2acd3

Please sign in to comment.