Skip to content

Commit

Permalink
Fix grid action numeration
Browse files Browse the repository at this point in the history
  • Loading branch information
khozzy committed Aug 11, 2019
1 parent e4f920a commit 2edb476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gym_grid/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

MOVE_LEFT = 0
MOVE_RIGHT = 1
MOVE_UP = 3
MOVE_DOWN = 4
MOVE_UP = 2
MOVE_DOWN = 3

# Food located in [n, n]
# Observation x,y in [1, n]
Expand Down

0 comments on commit 2edb476

Please sign in to comment.