From 0d28c5d0535a5d7f615dc9d55776f45e8463d3da Mon Sep 17 00:00:00 2001 From: Scott Wong <scottmw@student.unimelb.edu.au> Date: Sat, 20 Mar 2021 20:44:31 +1100 Subject: [PATCH] Literally only typo corrections --- search/movement_logic.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/search/movement_logic.py b/search/movement_logic.py index eaec4a7..0fe2dfc 100644 --- a/search/movement_logic.py +++ b/search/movement_logic.py @@ -153,7 +153,7 @@ def swing_to_tile_2(token, x): if position == DOWN_RIGHT: return slide_down_right(slide_down_right(token)) -def swing_to_tile_2(token, x): +def swing_to_tile_3(token, x): position = get_relative_position(token, x) if position == LEFT: @@ -184,8 +184,8 @@ LEFT = 1 RIGHT = 2 UP_LEFT = 3 UP_RIGHT = 4 -DOWN_LEFT =5 -DOWN_RIGHT =6 +DOWN_LEFT = 5 +DOWN_RIGHT = 6 """ return the number represent the location of x relative to the token -- GitLab